diff options
author | Malf Furious <m@lfurio.us> | 2018-02-07 22:41:35 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-02-07 22:41:35 -0500 |
commit | 0dd76669c58d1ae62d761d8f7c815b464963ca4a (patch) | |
tree | a22a44b47684d7f20305bb3b0258a01fa6edccf5 /app/class/stage.class.php | |
parent | 66aa954421c093ad54da8806e42d4ff9bba59091 (diff) | |
parent | 0bae6d4063c82c6522e3a5887bc25a2162504b69 (diff) | |
download | scrott-0dd76669c58d1ae62d761d8f7c815b464963ca4a.tar.gz scrott-0dd76669c58d1ae62d761d8f7c815b464963ca4a.zip |
Merge branch 'bug/object' into dev
Diffstat (limited to 'app/class/stage.class.php')
-rw-r--r-- | app/class/stage.class.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/class/stage.class.php b/app/class/stage.class.php index 74c5f42..43bb3c3 100644 --- a/app/class/stage.class.php +++ b/app/class/stage.class.php @@ -12,7 +12,7 @@ * For more information, please refer to UNLICENSE */ -require_once "class/object.class.php"; +require_once "class/obj.class.php"; require_once "class/pad.class.php"; require_once "class/issue.class.php"; @@ -20,7 +20,7 @@ require_once "class/issue.class.php"; * This class models Scrott pad stages. Stages form a pipeline through * which issues can progress. */ -class stage extends object +class stage extends obj { /* * Constructor @@ -173,7 +173,7 @@ class stage extends object * moved to the given stage object. Additionally, the pad may be * given, in which case, those issues will be closed. */ - public function removeStage(object $mvt) : void + public function removeStage(obj $mvt) : void { if (!($prev = $this->getPrev())) $prev = $this->getParent(); |