/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
spatie
/
ignition
/
tests
/
TestClasses
/
Models
/
Upload File
HOME
<?php namespace Spatie\Ignition\Tests\TestClasses\Models; class Car { public $brand; public $color; public function __construct($brand, $color) { $this->brand = $brand; $this->color = $color; } }