Merge pull request #253 from jhuet/fix-php53

fixing php54 array syntax
This commit is contained in:
Kuba Turek
2015-10-07 14:26:41 +02:00
@@ -147,6 +147,6 @@ class LinkSharedFilesTask extends AbstractTask implements IsReleaseAware
$path = $linkedEntity; $path = $linkedEntity;
} }
return [$path, $strategy]; return array($path, $strategy);
} }
} }