1 2 3 4 5 6
<?php $object = new SomeClass(); $refMethod = new ReflectionMethod($object, 'getDriver'); $refMethod->setAccessible(true); $refMethod->invoke($object);