LukePOLO\LaraCart\Tests\Models\TestItem::with PHP Method

with() public static method

Begin querying a model with eager loading.
public static with ( array | string $relations ) : Builder | static
$relations array | string
return Illuminate\Database\Eloquent\Builder | static
    public static function with($relations)
    {
        if (is_string($relations)) {
            $relations = func_get_args();
        }
        return Mockery::mock(new static());
    }
TestItem