[PropertyAccess] fixed CS

This commit is contained in:
Fabien Potencier 2014-05-21 13:53:20 +02:00
parent 6d329b3e68
commit 3e81333823
5 changed files with 0 additions and 8 deletions

View File

@ -444,8 +444,6 @@ class PropertyAccessor implements PropertyAccessorInterface
));
}
}
return null;
}
/**

View File

@ -33,7 +33,5 @@ class TestClassMagicCall
if ('setMagicCallProperty' === $method) {
$this->magicCallProperty = reset($args);
}
return null;
}
}

View File

@ -36,7 +36,5 @@ class TestClassMagicGet
if ('constantMagicProperty' === $property) {
return 'constant value';
}
return null;
}
}

View File

@ -11,7 +11,6 @@
namespace Symfony\Component\PropertyAccess\Tests;
use Symfony\Component\PropertyAccess\Exception\ExceptionInterface;
use Symfony\Component\PropertyAccess\PropertyAccessor;
use Symfony\Component\PropertyAccess\StringUtil;

View File

@ -13,7 +13,6 @@ namespace Symfony\Component\PropertyAccess\Tests;
use Symfony\Component\PropertyAccess\PropertyAccessor;
use Symfony\Component\PropertyAccess\Tests\Fixtures\TestClass;
use Symfony\Component\PropertyAccess\Tests\Fixtures\Magician;
use Symfony\Component\PropertyAccess\Tests\Fixtures\TestClassMagicCall;
use Symfony\Component\PropertyAccess\Tests\Fixtures\TestClassMagicGet;