Removed localization from logs (Because it doesn't work)
This commit is contained in:
parent
72579e769f
commit
6cff08f073
32 changed files with 48 additions and 477 deletions
|
|
@ -163,7 +163,7 @@ class Phing extends Plugin
|
|||
public function setBuildFile($buildFile)
|
||||
{
|
||||
if (!file_exists($this->getDirectory() . $buildFile)) {
|
||||
throw new \Exception(Lang::get('build_file_missing'));
|
||||
throw new \Exception('Specified build file does not exist.');
|
||||
}
|
||||
|
||||
$this->buildFile = $buildFile;
|
||||
|
|
@ -239,7 +239,7 @@ class Phing extends Plugin
|
|||
public function setPropertyFile($propertyFile)
|
||||
{
|
||||
if (!file_exists($this->getDirectory() . DIRECTORY_SEPARATOR . $propertyFile)) {
|
||||
throw new \Exception(Lang::get('property_file_missing'));
|
||||
throw new \Exception('Specified property file does not exist.');
|
||||
}
|
||||
|
||||
$this->propertyFile = $propertyFile;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue