for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ShopperLibrary\ObjectModule;
use ShopperLibrary\ObjectModule\Properties\Properties;
/**
*
* This class has the basic attributes to launch the form.
* Class ObjectModuleAbstract
* @package ShopperLibrary\ObjectModule
*/
abstract class ObjectModuleAbstract extends Properties
{
* Get all the available variables you can set
* @return array
public function getVars()
return array_keys(get_object_vars($this));
}
* Get array representation of object
public function toArray()
return get_object_vars($this);