1. Go to this page and download the library: Download ride/lib-generator 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/ */
ride / lib-generator example snippets
use ride\library\generator\CodeGenerator;
function generateCode(CodeGenerator $generator) {
// create a constant
$constant = $generator->createVariable('MY_CONSTANT', 'string');
$constant->setDefaultValue('constant');
$constant->setDescription('Dummy constant');
// create a property
$isActiveProperty = $generator->createProperty('isActive', 'boolean', 'private');
$isActiveProperty->setDefaultValue(false);
$isActiveProperty->setDescription('Flag to see if this instance is active');
// create needed variables
$dataVariable = $generator->createVariable('data', 'vendor\\library\\data\\DataContainer');
$dataVariable->setDescription('Data container to check');
$isValidVariable = $generator->createVariable('isValid', 'boolean');
$isValidVariable->setDescription('Flag to see if the provided data is valid');
// create methods
$isActiveMethod = $generator->createMethod('isActive');
$isActiveMethod->setDescription('Checks if this instance is active');
$isActiveMethod->setSource('return $this->isActive;');
$isActiveMethod->setReturnValue($isActiveProperty);
$setIsActiveMethod = $generator->createMethod('setIsActive', array($isActiveProperty));
$setIsActiveMethod->setDescription('Sets the active state of this instance');
$setIsActiveMethod->setSource('$this->isActive = $isActive;');
$checkDataMethod = $generator->createMethod('checkData', array($dataVariable));
$checkDataMethod->setDescription('Checks the provided data');
$checkDataMethod->setSource('return $data->isValid();');
$checkDataMethod->setReturnValue($isValidVariable);
// join it all together in a class
$class = $generator->createClass('vendor\\library\\MyClass', null, array('vendor\\library\\MyInterface'));
$class->addConstant($constant);
$class->addProperty($isActiveProperty);
$class->addMethod($isActiveMethod);
$class->addMethod($setIsActiveMethod);
$class->addMethod($checkDataMethod);
// generate the PHP code
return $this->generator->generateClass($class);
}
namespace vendor\library;
use vendor\library\data\DataContainer;
class MyClass implements MyInterface {
/**
* Dummy constant
* @var string
*/
const MY_CONSTANT = 'constant';
/**
* Flag to see if this instance is active
* @var boolean
*/
private $isActive = false;
/**
* Checks if this instance is active
* @return boolean Flag to see if this instance is active
*/
public function isActive() {
return $this->isActive;
}
/**
* Sets the active state of this instance
* @param boolean $isActive Flag to see if this instance is active
* @return null
*/
public function setIsActive($isActive = false) {
$this->isActive = $isActive;
}
/**
* Checks the provided data
* @param \vendor\library\data\DataContainer $data Data container to check
* @return boolean Flag to see if the provided data is valid
*/
public function checkData(DataContainer $data) {
return $data->isValid();
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.