Files
yii2/tests/data/ar/Dog.php
2025-09-30 01:33:08 +03:00

32 lines
556 B
PHP

<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
declare(strict_types=1);
namespace yiiunit\data\ar;
/**
* Class Dog.
*
* @author Jose Lorente <jose.lorente.martin@gmail.com>
* @since 2.0
*/
class Dog extends Animal
{
/**
* @param self $record
* @param array $row
*/
public static function populateRecord($record, $row): void
{
parent::populateRecord($record, $row);
$record->does = 'bark';
}
}