├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── AutoAccessorTrait.php ├── AutoMutatorTrait.php ├── Exceptions │ └── InvalidPropertyCallException.php └── helpers.php └── tests ├── Unit ├── AutoAccessorTest.php └── AutoMutatorTest.php └── fakes └── FakeUser.php /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | vendor/ -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/AutoAccessorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/src/AutoAccessorTrait.php -------------------------------------------------------------------------------- /src/AutoMutatorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/src/AutoMutatorTrait.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidPropertyCallException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/src/Exceptions/InvalidPropertyCallException.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/src/helpers.php -------------------------------------------------------------------------------- /tests/Unit/AutoAccessorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/tests/Unit/AutoAccessorTest.php -------------------------------------------------------------------------------- /tests/Unit/AutoMutatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/tests/Unit/AutoMutatorTest.php -------------------------------------------------------------------------------- /tests/fakes/FakeUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxalmonte14/magicproperties/HEAD/tests/fakes/FakeUser.php --------------------------------------------------------------------------------