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