├── Interception └── Code │ └── Generator │ ├── DiCompileInterceptor.php │ ├── GetClassMethodsTrait.php │ └── Interceptor.php ├── LICENSE.txt ├── README.md ├── composer.json ├── etc ├── di.xml └── module.xml └── registration.php /Interception/Code/Generator/DiCompileInterceptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danslo/ProtectedInterceptors/HEAD/Interception/Code/Generator/DiCompileInterceptor.php -------------------------------------------------------------------------------- /Interception/Code/Generator/GetClassMethodsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danslo/ProtectedInterceptors/HEAD/Interception/Code/Generator/GetClassMethodsTrait.php -------------------------------------------------------------------------------- /Interception/Code/Generator/Interceptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danslo/ProtectedInterceptors/HEAD/Interception/Code/Generator/Interceptor.php -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danslo/ProtectedInterceptors/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danslo/ProtectedInterceptors/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danslo/ProtectedInterceptors/HEAD/composer.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danslo/ProtectedInterceptors/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danslo/ProtectedInterceptors/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danslo/ProtectedInterceptors/HEAD/registration.php --------------------------------------------------------------------------------