Completed
Push — master ( db8922...013eb5 )
by Nil
11:20
created

EloquentHelperTest::testItCanPaginate()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
/**
3
 * Author: Nil Portugués Calderó <[email protected]>
4
 * Date: 12/9/15
5
 * Time: 2:27 PM.
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace NilPortugues\Tests\Laravel5\JsonApi\Eloquent;
12
13
use NilPortugues\Laravel5\JsonApi\Eloquent\EloquentHelper;
14
use NilPortugues\Tests\Laravel5\JsonApi\LaravelTestCase;
15
16
class EloquentHelperTest extends LaravelTestCase
17
{
18
    use EloquentHelper;
19
20
    public function testItCanPaginate()
21
    {
22
    }
23
}
24