deserializePaths() 공개 메소드

public deserializePaths ( $obj )
예제 #1
0
 protected function readPaths()
 {
     if (!file_exists($this->file)) {
         return [];
     }
     $data = $this->readFromFile();
     return $this->serializer->deserializePaths($data);
 }