PHP code example of tonicospinelli / class-generation
1. Go to this page and download the library: Download tonicospinelli/class-generation library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tonicospinelli / class-generation example snippets
ClassGeneration\NamespaceClass;
use ClassGeneration\PhpClass;
use ClassGeneration\Property;
use ClassGeneration\Writer;
$code = new PhpClass();
$code
->setName('FirstClass')
->setNamespace(new NamespaceClass('MyNamespace'))
->setDescription('Class description')
->addProperty(new Property(array('name' => 'property')))
->generateGettersAndSettersFromProperties();
$writer = new Writer();
$writer
->setPhpClass($code)
->setPath('./src')
->write();
namespace MyNamespace;
/**
* Class description
* @name FirstClass
*/
class FirstClass
{
public $property;
public function getProperty()
{
return $this->property;
}
public function setProperty($property)
{
$this->property = $property;
return $this;
}
}
sh
$ php composer.phar