php-parser/lib/PHPParser/BuilderFactory.php

56 lines
1.4 KiB
PHP
Raw Normal View History

2012-03-10 17:56:56 +01:00
<?php
/**
2012-03-10 23:25:26 +01:00
* @method PHPParser_Builder_Class class(string $name) Creates a class builder.
2012-03-10 17:56:56 +01:00
*/
class PHPParser_BuilderFactory
{
/*
* "class" is a reserved keyword, so we implement the method as _class()
* and redirect class() to it through __call magic
*/
protected function _class($name) {
return new PHPParser_Builder_Class($name);
}
2012-03-10 23:25:26 +01:00
/**
* Creates a method builder.
*
* @param string $name Name of the method
*
2012-03-11 00:06:02 +01:00
* @return PHPParser_Builder_Method The created method builder
2012-03-10 23:25:26 +01:00
*/
public function method($name) {
return new PHPParser_Builder_Method($name);
}
2012-03-11 00:06:02 +01:00
/**
* Creates a parameter builder.
*
* @param string $name Name of the parameter
*
* @return PHPParser_Builder_Param The created parameter builder
*/
public function param($name) {
return new PHPParser_Builder_Param($name);
}
2012-03-11 08:42:13 +01:00
/**
* Creates a property builder.
*
* @param string $name Name of the property
*
* @return PHPParser_Builder_Property The created property builder
*/
public function property($name) {
return new PHPParser_Builder_Property($name);
}
2012-03-10 17:56:56 +01:00
public function __call($name, array $args) {
if ('class' === $name) {
return call_user_func_array(array($this, '_class'), $args);
}
throw new LogicException(sprintf('Method "%s" does not exist', $name));
}
}