Files
LaravelShoppingcart/tests/Fixtures/ProductModel.php
2017-05-20 23:09:27 +02:00

13 lines
183 B
PHP

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