for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @package Spark
* @author Flipbox Factory <[email protected]>
* @copyright 2010-2016 Flipbox Digital Limited
* @license https://github.com/flipbox/spark/blob/master/LICENSE
* @link https://github.com/flipbox/spark
* @since Class available since Release 1.1.0
*/
namespace flipbox\spark\elements;
use craft\base\Element as BaseElement;
use flipbox\spark\helpers\ElementHelper;
abstract class Element extends BaseElement implements interfaces\Element
{
* @inheritdoc
public function getId(): int
return $this->id;
}
public function setId(int $id)
$this->id = $id;
return $this;