for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LeKoala\CmsActions;
trait ProgressiveAction
{
/**
* @var bool
*/
protected $progressive = false;
* Get the value of progressive
* @return mixed
public function getProgressive()
return $this->progressive;
}
* Set the value of progressive
*
* @param mixed $progressive
* @return $this
public function setProgressive($progressive)
$this->progressive = $progressive;
return $this;