Download the PHP package rougin/classidy without Composer
On this page you can find all versions of the php package rougin/classidy. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download rougin/classidy
More information about rougin/classidy
Files in rougin/classidy
Package classidy
Short Description Create PHP classes using PHP.
License MIT
Homepage https://roug.in/classidy/
Informations about the package classidy
Classidy
A package that creates PHP classes using PHP. That's it.
Installation
Install Classidy
through Composer:
Basic Usage
Creating a simple class
Creating a PHP class only requires the Classidy
and Generator
classes:
The setCodeLine
method can also be used for specifying code of a method in a line based format. This may be useful in adding conditions in generating code of a method:
Adding parent class, interfaces
The class can be added with a parent class using extendsTo
:
[!NOTE] If the added parent class or interface is not from the same namespace of the class to be generated,
Classidy
will automatically import the said parent class/interface.
For adding interfaces, the addInterface
method can be used:
Adding traits
Similar in defining class and interfaces, adding a trait is possible using addTrait
:
Adding methods
Based from the first example, the addMethod
can be used to add a method to the class:
To add arguments in a specified method, kindy use the following methods below:
Method | Description |
---|---|
addArrayArgument |
Adds a property with a array as its data type. |
addBooleanArgument |
Adds an argument with a boolean as its data type. |
addClassArgument |
Adds an argument with the specified class. |
addFloatArgument |
Adds an argument with a float as its data type. |
addIntegerArgument |
Adds an argument with an integer as its data type. |
addStringArgument |
Adds an argument with a string as its data type. |
To add a class argument without being its type declared, add withoutTypeDeclared
after addClassArgument
:
A method can also be defined as protected
or private
:
[!NOTE] By default, all of the specified methods are in
public
visibility.
The method can be alternatively be specified as a @method
tag in the class:
Adding properties
Similiar to adding arguments in a method, adding properties to a class can be done by the following:
Method | Description |
---|---|
addArrayProperty |
Adds a property with a array as its data type. |
addBooleanProperty |
Adds a property with a boolean as its data type. |
addClassProperty |
Adds a property with the specified class. |
addFloatProperty |
Adds a property with a float as its data type. |
addIntegerProperty |
Adds a property with an integer as its data type. |
addStringProperty |
Adds a property with a string as its data type. |
To change a visibility of a property, the methods asPublic
and asPrivate
can be used:
[!NOTE] By default, all of the specified properties are in
protected
visibility.
Alternatively, the property be specified as a @property
tag in the class:
Setting an empty class
The setEmpty
method can be used to clear any methods and properties previously specified. This maybe useful when generating empty classes without specifying a new Classidy
class:
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
Credits
License
The MIT License (MIT). Please see LICENSE for more information.