| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function step1() |
||
|
|
|||
| 12 | { |
||
| 13 | $repositories = app('GithubClass')->getRepositories(); |
||
| 14 | |||
| 15 | \Session::put('GithubRepositories', $repositories); |
||
| 16 | |||
| 17 | return view('wizard.step1') |
||
| 18 | ->with('repositories', $repositories) |
||
| 19 | ->with('columns', ['checkbox', 'repository', 'organization']); |
||
| 20 | } |
||
| 21 | |||
| 38 |
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.