本文整理汇总了PHP中Assert\Assertion::directory方法的典型用法代码示例。如果您正苦于以下问题:PHP Assertion::directory方法的具体用法?PHP Assertion::directory怎么用?PHP Assertion::directory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Assert\Assertion
的用法示例。
在下文中一共展示了Assertion::directory方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setFilename
/**
* @param string $filename
*/
public function setFilename($filename)
{
Assertion::string($filename, 'Invalid filename.');
Assertion::directory(dirname($filename), 'The selected directory does not exist.');
Assertion::writeable(dirname($filename), 'The selected directory is not writable.');
$this->filename = $filename;
}
示例2: __construct
public function __construct($directory)
{
Assertion::directory($directory);
Assertion::readable($directory);
$directory .= substr($directory, -1) === '/' ? '' : '/';
//add ending slash
$this->directory = $directory;
}
示例3: testDirectory
public function testDirectory()
{
Assertion::directory(__DIR__);
$this->setExpectedException('Assert\\AssertionFailedException', null, Assertion::INVALID_DIRECTORY);
Assertion::directory(__DIR__ . '/does-not-exist');
}
示例4: setProjectDirectory
/**
* Sets the project directory.
*
* @param string $projectDirectory
*
* @return $this
*/
public function setProjectDirectory($projectDirectory)
{
Assertion::directory($projectDirectory);
$this->projectDirectory = $projectDirectory;
return $this;
}
示例5: __construct
/**
* __construct()
*
* @param ConfigLoader $configLoader Config loader
* @param string $path Config files path
*/
public function __construct(ConfigLoader $configLoader, $path)
{
Assertion::directory($path);
$this->path = $path;
$this->configLoader = $configLoader;
}
示例6: iSpecifyThePath
/**
* @Given /^I specify the path "([^"]*)"$/
*/
public function iSpecifyThePath($arg1)
{
$this->path = $arg1;
Assertion::directory(getcwd() . '/' . $this->path);
}