We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 20 | class ActivityRepository extends BaseRepository |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var Activity|Builder|Collection |
||
| 24 | */ |
||
| 25 | protected $model; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * PageRepository constructor. |
||
| 29 | * |
||
| 30 | * @param Activity $model |
||
| 31 | */ |
||
| 32 | public function __construct(Activity $model) |
||
| 36 | |||
| 37 | public function paginate($count = 25) |
||
| 41 | } |
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@returnannotation as described here.