1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 09:47:59 +01:00
PHP-Parser/lib/PhpParser/Builder/Class_.php

161 lines
3.9 KiB
PHP
Raw Normal View History

2012-03-10 17:56:56 +01:00
<?php
namespace PhpParser\Builder;
use PhpParser;
use PhpParser\Node\Name;
use PhpParser\Node\Stmt;
class Class_ extends PhpParser\BuilderAbstract
2012-03-10 17:56:56 +01:00
{
protected $name;
protected $extends;
protected $implements;
protected $type;
protected $uses;
protected $constants;
protected $properties;
protected $methods;
protected $attributes;
2012-03-10 17:56:56 +01:00
/**
* Creates a class builder.
*
* @param string $name Name of the class
*/
public function __construct($name) {
$this->name = $name;
$this->type = 0;
$this->extends = null;
$this->implements = array();
$this->uses = $this->constants = $this->properties = $this->methods = array();
$this->attributes = array();
2012-03-10 17:56:56 +01:00
}
/**
* Extends a class.
*
* @param Name|string $class Name of class to extend
2012-03-10 17:56:56 +01:00
*
* @return self The builder instance (for fluid interface)
2012-03-10 17:56:56 +01:00
*/
public function extend($class) {
$this->extends = $this->normalizeName($class);
return $this;
}
/**
* Implements one or more interfaces.
*
* @param Name|string $interface Name of interface to implement
* @param Name|string $... More interfaces to implement
2012-03-10 17:56:56 +01:00
*
* @return self The builder instance (for fluid interface)
2012-03-10 17:56:56 +01:00
*/
public function implement() {
foreach (func_get_args() as $interface) {
$this->implements[] = $this->normalizeName($interface);
}
return $this;
}
/**
* Makes the class abstract.
*
* @return self The builder instance (for fluid interface)
2012-03-10 17:56:56 +01:00
*/
public function makeAbstract() {
$this->setModifier(Stmt\Class_::MODIFIER_ABSTRACT);
2012-03-10 17:56:56 +01:00
return $this;
}
/**
* Makes the class final.
*
* @return self The builder instance (for fluid interface)
2012-03-10 17:56:56 +01:00
*/
public function makeFinal() {
$this->setModifier(Stmt\Class_::MODIFIER_FINAL);
2012-03-10 17:56:56 +01:00
return $this;
}
/**
* Adds a statement.
*
* @param Stmt|PhpParser\Builder $stmt The statement to add
2012-03-10 17:56:56 +01:00
*
* @return self The builder instance (for fluid interface)
2012-03-10 17:56:56 +01:00
*/
public function addStmt($stmt) {
$stmt = $this->normalizeNode($stmt);
$targets = array(
'Stmt_TraitUse' => &$this->uses,
'Stmt_ClassConst' => &$this->constants,
'Stmt_Property' => &$this->properties,
'Stmt_ClassMethod' => &$this->methods,
);
$type = $stmt->getType();
if (!isset($targets[$type])) {
throw new \LogicException(sprintf('Unexpected node of type "%s"', $type));
2012-03-10 17:56:56 +01:00
}
$targets[$type][] = $stmt;
return $this;
}
/**
* Adds multiple statements.
*
* @param array $stmts The statements to add
*
* @return self The builder instance (for fluid interface)
2012-03-10 17:56:56 +01:00
*/
public function addStmts(array $stmts) {
foreach ($stmts as $stmt) {
$this->addStmt($stmt);
}
return $this;
}
/**
* Sets doc comment for the property.
*
* @param PhpParser\Comment\Doc|string $docComment Doc comment to set
*
* @return self The builder instance (for fluid interface)
*/
public function setDocComment($docComment) {
$this->attributes = array(
'comments' => array($this->normalizeDocComment($docComment))
);
return $this;
}
2012-03-10 17:56:56 +01:00
/**
* Returns the built class node.
*
* @return Stmt\Class_ The built class node
2012-03-10 17:56:56 +01:00
*/
public function getNode() {
return new Stmt\Class_($this->name, array(
2012-03-10 17:56:56 +01:00
'type' => $this->type,
'extends' => $this->extends,
'implements' => $this->implements,
'stmts' => array_merge($this->uses, $this->constants, $this->properties, $this->methods),
), $this->attributes);
2012-03-10 17:56:56 +01:00
}
}