Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / vendor / drush / drush / isolation / src / FunctionUtils.php
1 <?php
2 namespace Drush;
3
4 trait FunctionUtils
5 {
6     protected $sut;
7
8     protected function callProtected($methodName, $args = [])
9     {
10         $r = new \ReflectionMethod($this->sut, $methodName);
11         $r->setAccessible(true);
12         return $r->invokeArgs($this->sut, $args);
13     }
14 }