Cleaned up the testsuite a bit

This commit is contained in:
Rob Gloudemans
2017-05-20 23:09:27 +02:00
parent bb7fbe1303
commit e5c8d1e6e5
3 changed files with 221 additions and 233 deletions

View File

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