From: Roland Haeder Date: Sun, 7 Dec 2014 18:55:14 +0000 (+0100) Subject: setIteratorInstance() was already defined and way to generic. X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=8340bde46fbf09750b33429eb865db466800a8ce setIteratorInstance() was already defined and way to generic. Signed-off-by: Roland Häder --- diff --git a/inc/classes/interfaces/io/directory/class_Directory.php b/inc/classes/interfaces/io/directory/class_Directory.php index 89e425ed..993ced24 100644 --- a/inc/classes/interfaces/io/directory/class_Directory.php +++ b/inc/classes/interfaces/io/directory/class_Directory.php @@ -50,7 +50,7 @@ interface Directory extends FrameworkInterface { * * @return $iteratorInstance The directory pointer which shall be a valid directory resource */ - function getIteratorInstance (); + function getDirectoryIteratorInstance (); /** * Getter for path name diff --git a/inc/classes/main/file_directories/directory/class_FrameworkDirectoryPointer.php b/inc/classes/main/file_directories/directory/class_FrameworkDirectoryPointer.php index d2f47d3c..2d075cbd 100644 --- a/inc/classes/main/file_directories/directory/class_FrameworkDirectoryPointer.php +++ b/inc/classes/main/file_directories/directory/class_FrameworkDirectoryPointer.php @@ -45,7 +45,7 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Directory */ public function __destruct() { // Is there a resource pointer? Then we have to close the directory here! - if ($this->getIteratorInstance() instanceof DirectoryIterator) { + if ($this->getDirectoryIteratorInstance() instanceof DirectoryIterator) { // Try to close a directory $this->closeDirectory(); } // END - if @@ -109,7 +109,7 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Directory $iteratorInstance->rewind(); // Set directory pointer and path name - $pointerInstance->setIteratorInstance($iteratorInstance); + $pointerInstance->setDirectoryIteratorInstance($iteratorInstance); $pointerInstance->setPathName($pathName); // Return the instance @@ -126,13 +126,13 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Directory //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DIRECTORY[' . __METHOD__ . ':' . __LINE__ . '] - CALLED!'); // Can the next entry be read? - assert($this->getIteratorInstance()->valid()); + assert($this->getDirectoryIteratorInstance()->valid()); // Default is FALSE $currentEntry = FALSE; // Read data from the directory pointer and return it - $currentEntry = $this->getIteratorInstance()->current(); + $currentEntry = $this->getDirectoryIteratorInstance()->current(); // Return found entry //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DIRECTORY[' . __METHOD__ . ':' . __LINE__ . ']: currentEntry[]=' . gettype($currentEntry) . ' - EXIT!'); @@ -151,7 +151,7 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Directory // No exception given, so read all files and directories, but not recursive self::createDebugInstance(__CLASS__)->debugOutput('DIRECTORY[' . __METHOD__ . ':' . __LINE__ . ']: No exceptions given, please use readRawDirectory() instead!'); return $this->readRawDirectory(); - } elseif (!$this->getIteratorInstance()->valid()) { + } elseif (!$this->getDirectoryIteratorInstance()->valid()) { // No more left to read return NULL; } @@ -172,7 +172,7 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Directory // Is it not excluded? if (in_array($rawLine, $except)) { // To next entry - $this->getIteratorInstance()->next(); + $this->getDirectoryIteratorInstance()->next(); // Exclude this part $rawLine = $this->readDirectoryExcept($except); @@ -181,7 +181,7 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Directory } // END - if // To next entry - $this->getIteratorInstance()->next(); + $this->getDirectoryIteratorInstance()->next(); // Return read line //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DIRECTORY[' . __METHOD__ . ':' . __LINE__ . ']: rawLine[' . gettype($rawLine) . ']=' . $rawLine); @@ -196,7 +196,7 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Directory */ public function closeDirectory () { // Close the directory by unsetting it - $this->setIteratorInstance(NULL); + $this->setDirectoryIteratorInstance(NULL); $this->setPathName(''); } @@ -206,7 +206,7 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Directory * @param $iteratorInstance An instanceof a DirectoryIterator class or NULL to unset ("close") it. * @return void */ - protected final function setIteratorInstance (DirectoryIterator $iteratorInstance = NULL) { + protected final function setDirectoryIteratorInstance (DirectoryIterator $iteratorInstance = NULL) { // Set instance (or NULL) $this->iteratorInstance = $iteratorInstance; } @@ -216,7 +216,7 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem implements Directory * * @return $iteratorInstance The directory pointer which shall be a valid directory resource */ - public final function getIteratorInstance () { + public final function getDirectoryIteratorInstance () { return $this->iteratorInstance; }