for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WsdlToPhp\PackageGenerator\ConfigurationReader;
class ServiceReservedKeywords extends AbstractReservedKeywords
{
/**
* @throws \InvalidArgumentException
* @param string options's file to parse
* @return ServiceReservedKeywords
*/
public static function instance($filename = null)
return parent::instance(empty($filename) ? self::getDefaultConfigurationPath() : $filename);
}
* @return string
public static function getDefaultConfigurationPath()
return dirname(__FILE__) . '/../resources/config/service_reserved_keywords.yml';