Files
LaravelShoppingcart/tests/Fixtures/ProductModel.php
Patrick Henninger 7436422b01 Codestyle
2019-01-14 18:18:21 +01:00

14 lines
184 B
PHP

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