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%2FDecoratedState.php;fp=web%2Fcore%2Fmodules%2Fworkflows%2Ftests%2Fmodules%2Fworkflow_type_test%2Fsrc%2FDecoratedState.php;h=0000000000000000000000000000000000000000;hp=793e8993a03098877817fc5d6bde189c1bae2e77;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/web/core/modules/workflows/tests/modules/workflow_type_test/src/DecoratedState.php b/web/core/modules/workflows/tests/modules/workflow_type_test/src/DecoratedState.php deleted file mode 100644 index 793e8993a..000000000 --- a/web/core/modules/workflows/tests/modules/workflow_type_test/src/DecoratedState.php +++ /dev/null @@ -1,90 +0,0 @@ -state = $state; - $this->extra = $extra; - } - - /** - * Gets the extra information stored on the state. - * - * @return string - */ - public function getExtra() { - return $this->extra; - } - - /** - * {@inheritdoc} - */ - public function id() { - return $this->state->id(); - } - - /** - * {@inheritdoc} - */ - public function label() { - return $this->state->label(); - } - - /** - * {@inheritdoc} - */ - public function weight() { - return $this->state->weight(); - } - - /** - * {@inheritdoc} - */ - public function canTransitionTo($to_state_id) { - return $this->state->canTransitionTo($to_state_id); - } - - /** - * {@inheritdoc} - */ - public function getTransitionTo($to_state_id) { - return $this->state->getTransitionTo($to_state_id); - } - - /** - * {@inheritdoc} - */ - public function getTransitions() { - return $this->state->getTransitions(); - } - -}