]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/filter/class_
Continued with hub:
[hub.git] / application / hub / main / filter / class_
index 405ba8ab8a1a7b4ef65bfa8c77d4c974954e17dc..9fde3e7106a2790079f92d646d60e92c9d159daf 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -21,7 +21,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-class Hub!!!???Filter extends BaseFilter implements Filterable {
+class Hub!!!???Filter extends BaseHubFilter implements Filterable {
        /**
         * Protected constructor
         *
@@ -51,18 +51,13 @@ class Hub!!!???Filter extends BaseFilter implements Filterable {
         * @param       $requestInstance        An instance of a class with an Requestable interface
         * @param       $responseInstance       An instance of a class with an Responseable interface
         * @return      void
+        * @throws      FilterChainException    If $nodeInstance is null (no NullPointerException here)
         * @todo        0% done
         */
        public function execute (Requestable $requestInstance, Responseable $responseInstance) {
                // Get node instance
                $nodeInstance = Registry::getRegistry()->getInstance('node');
 
-               // Sanity-check on it
-               if (is_null($nodeInstance)) {
-                       // Throws a FilterChainException to stop further processing
-                       throw new FilterChainException($this, self::EXCEPTION_FILTER_CHAIN_INTERCEPTED);
-               } // END - if
-
                // Now do something
                $this->partialStub('Please implement this step.');
        }