X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fworkflows%2Ftests%2Fmodules%2Fworkflow_type_test%2Fsrc%2FDecoratedTransition.php;fp=web%2Fcore%2Fmodules%2Fworkflows%2Ftests%2Fmodules%2Fworkflow_type_test%2Fsrc%2FDecoratedTransition.php;h=0000000000000000000000000000000000000000;hp=d7690d519d14767a4946aefb3a8c1c9107cb9bf6;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/web/core/modules/workflows/tests/modules/workflow_type_test/src/DecoratedTransition.php b/web/core/modules/workflows/tests/modules/workflow_type_test/src/DecoratedTransition.php deleted file mode 100644 index d7690d519..000000000 --- a/web/core/modules/workflows/tests/modules/workflow_type_test/src/DecoratedTransition.php +++ /dev/null @@ -1,83 +0,0 @@ -transition = $transition; - $this->extra = $extra; - } - - /** - * Gets the extra information stored on the transition. - * - * @return string - */ - public function getExtra() { - return $this->extra; - } - - /** - * {@inheritdoc} - */ - public function id() { - return $this->transition->id(); - } - - /** - * {@inheritdoc} - */ - public function label() { - return $this->transition->label(); - } - - /** - * {@inheritdoc} - */ - public function from() { - return $this->transition->from(); - } - - /** - * {@inheritdoc} - */ - public function to() { - return $this->transition->to(); - } - - /** - * {@inheritdoc} - */ - public function weight() { - return $this->transition->weight(); - } - -}