Files
LaravelShoppingcart/tests/Fixtures/ProductModel.php
2022-01-18 00:28:15 +01:00

14 lines
191 B
PHP

<?php
namespace Gloudemans\Tests\Shoppingcart\Fixtures;
class ProductModel
{
public $someValue = 'Some value';
public function find($id) : self
{
return $this;
}
}