PMCORE-876 The files are not shown, when we create a PM_Table from an external DB
This commit is contained in:
4
thirdparty/phing/parser/Location.php
vendored
4
thirdparty/phing/parser/Location.php
vendored
@@ -23,7 +23,7 @@
|
||||
* Stores the file name and line number of a XML file
|
||||
*
|
||||
* @author Andreas Aderhold <andi@binarycloud.com>
|
||||
* @copyright <20> 2001,2002 THYRELL. All rights reserved
|
||||
* @copyright 2001,2002 THYRELL. All rights reserved
|
||||
* @version $Revision: 1.6 $ $Date: 2003/12/24 13:02:09 $
|
||||
* @access public
|
||||
* @package phing.parser
|
||||
@@ -43,7 +43,7 @@ class Location {
|
||||
* @param integer the column number
|
||||
* @access public
|
||||
*/
|
||||
function Location($fileName = null, $lineNumber = null, $columnNumber = null) {
|
||||
function __construct($fileName = null, $lineNumber = null, $columnNumber = null) {
|
||||
$this->fileName = $fileName;
|
||||
$this->lineNumber = $lineNumber;
|
||||
$this->columnNumber = $columnNumber;
|
||||
|
||||
@@ -446,7 +446,7 @@ class Win32FileSystem extends FileSystem {
|
||||
/* -- Basic infrastructure -- */
|
||||
|
||||
/** compares file paths lexicographically */
|
||||
function compare(PhingFile $f1, PhingFile $f2) {
|
||||
function compare($f1, $f2) {
|
||||
$f1Path = $f1->getPath();
|
||||
$f2Path = $f2->getPath();
|
||||
return (boolean) strcasecmp((string) $f1Path, (string) $f2Path);
|
||||
|
||||
Reference in New Issue
Block a user