8889841cvendor/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/CallTypeHintPass.php000066600000002666150536135420034311 0ustar00home/clixcotz/mars.clix.co.tzrequiresCallTypeHintRemoval()) { $code = str_replace( 'public function __call($method, array $args)', 'public function __call($method, $args)', $code ); } if ($config->requiresCallStaticTypeHintRemoval()) { $code = str_replace( 'public static function __callStatic($method, array $args)', 'public static function __callStatic($method, $args)', $code ); } return $code; } }