-
-
Save brianium/2508c2c8c051c8d47cb4 to your computer and use it in GitHub Desktop.
Busted this using namespace in hacklang
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?hh //strict | |
namespace HackUnit\Runner; | |
class Options | |
{ | |
protected ?string $testPath; | |
public function setTestPath(string $testPath): this | |
{ | |
$this->testPath = $testPath; | |
return $this; | |
} | |
public function getTestPath(): ?string | |
{ | |
return $this->testPath; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment