| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | class BabelController extends Controller |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Show the Status Page. |
||
| 16 | * |
||
| 17 | * @return Response |
||
|
|
|||
| 18 | */ |
||
| 19 | public function index(Content $content) |
||
| 20 | { |
||
| 21 | return $content |
||
| 22 | ->header('Babel Marketspace') |
||
| 23 | ->description('Download and Manage your Babel Extension') |
||
| 24 | ->row(function(Row $row) { |
||
| 25 | $row->column(12, function(Column $column) { |
||
| 26 | $column->append(Self::marketspace()); |
||
| 27 | }); |
||
| 28 | }); |
||
| 29 | } |
||
| 30 | |||
| 31 | private static function marketspace() |
||
| 41 | ]); |
||
| 42 | } |
||
| 44 |