Merge pull request #44 from StephanWeinhold/patch-1

Fixed wrong variable-name.
This commit is contained in:
Robin Appelman 2016-03-16 15:29:50 +01:00
commit 424cf346e2

View file

@ -75,7 +75,7 @@ $share = $server->getShare('test');
$content = $share->dir('test'); $content = $share->dir('test');
foreach ($content as $info) { foreach ($content as $info) {
echo $name->getName() . "\n"; echo $info->getName() . "\n";
echo "\tsize :" . $info->getSize() . "\n"; echo "\tsize :" . $info->getSize() . "\n";
} }
``` ```