[Bridge] Rename to in setWorkingDir

This commit is contained in:
logmanoriginal 2018-11-15 19:17:18 +01:00
parent 39652bb050
commit 6f4a8f4d03
1 changed files with 5 additions and 5 deletions

View File

@ -101,21 +101,21 @@ class Bridge {
/** /**
* Sets the working directory. * Sets the working directory.
* *
* @param string $dirBridge Path to the directory containing bridges. * @param string $dir Path to the directory containing bridges.
* @throws \LogicException if the provided path is not a valid string. * @throws \LogicException if the provided path is not a valid string.
* @throws \Exception if the provided path does not exist. * @throws \Exception if the provided path does not exist.
* @return void * @return void
*/ */
public static function setWorkingDir($dirBridge){ public static function setWorkingDir($dir){
if(!is_string($dirBridge)) { if(!is_string($dir)) {
throw new \InvalidArgumentException('Working directory is not a valid string!'); throw new \InvalidArgumentException('Working directory is not a valid string!');
} }
if(!file_exists($dirBridge)) { if(!file_exists($dir)) {
throw new \Exception('Working directory does not exist!'); throw new \Exception('Working directory does not exist!');
} }
self::$workingDir = $dirBridge; self::$workingDir = $dir;
} }
/** /**