for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace SimpleCrud\Events;
class BeforeCreateRow
{
private $data;
public function __construct(array $data)
$this->setData($data);
}
public function getData(): array
return $this->data;
public function setData(array $data)
$this->data = $data;