├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── BadAttributeAccessException.php ├── BadMethodCallException.php ├── Exception.php ├── InvalidArgumentException.php └── Proxy.php └── tests ├── ProxyTest.php └── _fixture └── Foo.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/BadAttributeAccessException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/src/BadAttributeAccessException.php -------------------------------------------------------------------------------- /src/BadMethodCallException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/src/BadMethodCallException.php -------------------------------------------------------------------------------- /src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/src/Exception.php -------------------------------------------------------------------------------- /src/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/src/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/src/Proxy.php -------------------------------------------------------------------------------- /tests/ProxyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/tests/ProxyTest.php -------------------------------------------------------------------------------- /tests/_fixture/Foo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbergmann/peek-and-poke/HEAD/tests/_fixture/Foo.php --------------------------------------------------------------------------------