Fixed wrong variable-name.

This commit is contained in:
Stephan Weinhold 2016-02-17 11:04:53 +01:00
commit 70f90e9708

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";
} }
``` ```