Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
basz committed Jan 13, 2016
1 parent d86aeef commit 474272a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion doc/book/zend.code.generator.reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,13 @@ class Zend\Code\Generator\ClassGenerator extends Zend\Code\Generator\AbstractGen
public function getProperties()
public function getProperty($propertyName)
public function addMethods(Array $methods)
public function addMethod($method)
public function addMethod(
$name,
Array $parameters = [],
$flags = Zend\Code\Generator\MethodGenerator::FLAG_PUBLIC,
$body = null,
$docBlock = null
)
public function getMethods()
public function getMethod($methodName)
public function hasMethod($methodName)
Expand Down

0 comments on commit 474272a

Please sign in to comment.