summaryrefslogtreecommitdiffstats
path: root/app/class/stage.class.php
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2018-02-07 22:33:19 -0500
committerMalf Furious <m@lfurio.us>2018-02-07 22:33:19 -0500
commite54418762e279a1d7ca0efb7ed89b95464753ee8 (patch)
tree1bb852d199447d6569f544c6cbffcbdb49b947dd /app/class/stage.class.php
parent977e4271c6f27ed2d42fab6bb2706f4a59bf0237 (diff)
downloadscrott-e54418762e279a1d7ca0efb7ed89b95464753ee8.tar.gz
scrott-e54418762e279a1d7ca0efb7ed89b95464753ee8.zip
Update class files to use renamed obj class
Diffstat (limited to 'app/class/stage.class.php')
-rw-r--r--app/class/stage.class.php6
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();