WsdlToPhp\PackageGenerator\ConfigurationReader\ServiceReservedMethod::instance PHP Method

instance() public static method

public static instance ( $filename = null ) : ServiceReservedMethod
return ServiceReservedMethod
    public static function instance($filename = null)
    {
        return parent::instance(empty($filename) ? self::getDefaultConfigurationPath() : $filename);
    }

Usage Example

 /**
  * @return ServiceReservedMethod
  */
 public static function instance()
 {
     return ServiceReservedMethod::instance(__DIR__ . '/../resources/service_reserved_keywords.yml');
 }
All Usage Examples Of WsdlToPhp\PackageGenerator\ConfigurationReader\ServiceReservedMethod::instance