Skip to content

Instantly share code, notes, and snippets.

@alex7r
Created August 5, 2016 11:02
Show Gist options
  • Save alex7r/d13ad8036d0a40778abd3a77fec9c0bc to your computer and use it in GitHub Desktop.
Save alex7r/d13ad8036d0a40778abd3a77fec9c0bc to your computer and use it in GitHub Desktop.
Change protected property
<?php
$reflectionAppClass = new ReflectionClass($this->app);
$reflectionAppClassProperty = $reflectionAppClass->getProperty('template');
$reflectionAppClassProperty->setAccessible(true);
$reflectionAppClassProperty->setValue($this->app, $template);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment