php пророчество Имя файла не может быть пустым - PullRequest
0 голосов
/ 27 ноября 2018

Как смоделировать file_get_contents в моей функции: -

  public function call()
  {
    $this->getData();
  }

 private function getData()
  {
    $filePath = $this->locator->locate(__DIR__ . '/../../fff/sss/file.json', 
    null, false);
    $data    =   (array)json_decode(file_get_contents($filePath), true);
 }

Я попробовал: -

$this->object->call()->shouldBeCalled();

Ошибка получила: -

file_get_contents(): Filename cannot be empty

Как смоделироватьэтот путь к файлу до вызова функции getData?

...