Files
LaravelShoppingcart/tests/helpers/ProductModelStub.php

6 lines
141 B
PHP

<?php
class TestProduct {
public $description = 'This is the description of the test model';
public function find($id) { return $this; }
}