コード例 #1
0
ファイル: Node.php プロジェクト: nikkiii/clouddrive-php
 /**
  * Find and return the `Node` matching the given ID.
  *
  * @param int|string $id ID of the node
  *
  * @return \CloudDrive\Node|null
  */
 public static function loadById($id)
 {
     return self::$cacheStore->findNodeById($id);
 }