소스 검색

CacheShelfService修改getChildStation

ajun 5 년 전
부모
커밋
b6296ac34e
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      app/Services/CacheShelfService.php

+ 0 - 1
app/Services/CacheShelfService.php

@@ -34,7 +34,6 @@ class CacheShelfService
      */
     public function getChildStation($id)
     {
-        $stations = Station::query()->where('parent_id',$id)->get();
         return Station::query()->where('parent_id',$id)->with('parent','pendingStationTask.stationTaskMaterialBoxes.materialBox')->get();
     }