1 | <?php |
||
8 | class NodesController extends Controller |
||
9 | { |
||
10 | /** |
||
11 | * @var NodeRepositoryInterface |
||
12 | */ |
||
13 | private $nodes; |
||
14 | |||
15 | /** |
||
16 | * TopicController constructor. |
||
17 | * |
||
18 | * @param NodeRepositoryInterface $repository |
||
19 | */ |
||
20 | public function __construct(NodeRepositoryInterface $repository) |
||
24 | |||
25 | /** |
||
26 | * 获取节点列表. |
||
27 | * |
||
28 | * @return \Illuminate\Http\Response |
||
29 | */ |
||
30 | public function index() |
||
36 | } |
||
37 |