mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-14 22:30:27 +08:00
18 lines
262 B
PHP
18 lines
262 B
PHP
<?php
|
|
|
|
namespace yiiunit\framework\di\stubs;
|
|
|
|
use yii\base\BaseObject;
|
|
|
|
class Car extends BaseObject
|
|
{
|
|
public $color;
|
|
public $name;
|
|
|
|
public function __construct($color, $name)
|
|
{
|
|
$this->color = $color;
|
|
$this->name = $name;
|
|
}
|
|
}
|