instance() public static method

public static instance ( $filename = null ) : ServiceReservedMethod
return ServiceReservedMethod
 /**
  * @return ServiceReservedMethod
  */
 public static function instance()
 {
     return ServiceReservedMethod::instance(__DIR__ . '/../resources/service_reserved_keywords.yml');
 }
Example #2
0
 /**
  * @param $filename
  * @return ServiceReservedMethod
  */
 public function getReservedMethodsInstance($filename = null)
 {
     return ServiceReservedMethod::instance($filename);
 }