getLogFilePath() public méthode

Return log file path, assuming it exists. Returns NULL if nothing found.
public getLogFilePath ( ) : string | null
Résultat string | null
 public function testLogDoesntExistMessage()
 {
     $log = new DeploynautLogFile('SomeSortOf Filename (UAT).log', $this->basePath);
     $this->assertNull($log->getLogFilePath());
     $this->assertEquals('Log has not been created yet.', $log->content());
 }