for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\ActiveRecord\Tests\Stubs\MagicActiveRecord;
/**
* Class Dog.
*/
final class Dog extends Animal
{
public function populateRecord($row): void
parent::populateRecord($row);
$this->setDoes('bark');
}