Result.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /**
  3. * Finite state machine skeleton
  4. *
  5. * @copyright (c) 2007-2012 Ouest Systèmes Informatiques
  6. * @author Frédéric G. MARAND
  7. * @license Licensed under the CeCILL 2.0
  8. * @link http://wiki.audean.com/fsm/fsm
  9. *
  10. * @todo replace setAttribute('id',...) by setIdAttribute when PHP5.2 becomes mandatory
  11. */
  12. namespace OSInet\Finite_State_Machine;
  13. /**
  14. * needed notably for func_name()
  15. */
  16. require_once('misc.php'); // for func_name()
  17. $erFiniteStateMachine = error_reporting(-1);
  18. /**
  19. * This class defines a possible outcome for a given FSM transition.
  20. */
  21. class Result {
  22. /**
  23. * The return value of the event handler.
  24. *
  25. * @var mixed
  26. */
  27. public $fsmReturn;
  28. /**
  29. * The name of the state to which the FSM must change.
  30. *
  31. * If NULL, do not change the current state.
  32. *
  33. * @var string
  34. */
  35. public $fsmState;
  36. /**
  37. * The name of an event to be fired after the state change has been applied.
  38. *
  39. * @var string
  40. */
  41. public $fsmAction;
  42. /**
  43. * @param string $state
  44. * @param string $action
  45. */
  46. public function __construct($return = NULL, $state = NULL, $action = NULL) {
  47. $this->fsmReturn = $return;
  48. $this->fsmState = $state;
  49. $this->fsmAction = $action;
  50. }
  51. }
  52. error_reporting($erFiniteStateMachine);
  53. unset($erFiniteStateMachine);
PANIC: session(release): write data/sessions/e/9/e9a537233e9ed961: no space left on device

PANIC

session(release): write data/sessions/e/9/e9a537233e9ed961: no space left on device
/my/cache/.heroku/go/go-path/pkg/mod/github.com/go-macaron/session@v1.0.3/session.go:204 (0xb13e07)
/my/cache/.heroku/go/go-path/pkg/mod/gopkg.in/macaron.v1@v1.5.1/context.go:80 (0x967b75)
/my/cache/.heroku/go/go-path/pkg/mod/github.com/go-macaron/inject@v0.0.0-20200308113650-138e5925c53b/inject.go:157 (0x9512ee)
/my/cache/.heroku/go/go-path/pkg/mod/github.com/go-macaron/inject@v0.0.0-20200308113650-138e5925c53b/inject.go:135 (0x951205)
/my/cache/.heroku/go/go-path/pkg/mod/gopkg.in/macaron.v1@v1.5.1/context.go:124 (0x967cc4)
/my/cache/.heroku/go/go-path/pkg/mod/gopkg.in/macaron.v1@v1.5.1/context.go:114 (0x967bf6)
/my/cache/.heroku/go/go-path/pkg/mod/gopkg.in/macaron.v1@v1.5.1/recovery.go:161 (0x15baec4)
/my/cache/.heroku/go/go-path/pkg/mod/gopkg.in/macaron.v1@v1.5.1/logger.go:40 (0x96b257)
/my/cache/.heroku/go/go-path/pkg/mod/github.com/go-macaron/inject@v0.0.0-20200308113650-138e5925c53b/inject.go:157 (0x9512ee)
/my/cache/.heroku/go/go-path/pkg/mod/github.com/go-macaron/inject@v0.0.0-20200308113650-138e5925c53b/inject.go:135 (0x951205)
/my/cache/.heroku/go/go-path/pkg/mod/gopkg.in/macaron.v1@v1.5.1/context.go:124 (0x967cc4)
/my/cache/.heroku/go/go-path/pkg/mod/gopkg.in/macaron.v1@v1.5.1/router.go:187 (0x972959)
/my/cache/.heroku/go/go-path/pkg/mod/gopkg.in/macaron.v1@v1.5.1/router.go:304 (0x973a01)
/my/cache/.heroku/go/go-path/pkg/mod/gopkg.in/macaron.v1@v1.5.1/macaron.go:218 (0x96c572)
/my/cache/.heroku/go/go1.26.3/go/src/net/http/server.go:3311 (0x85a5cd)
/my/cache/.heroku/go/go1.26.3/go/src/net/http/server.go:2073 (0x837f6f)
/my/cache/.heroku/go/go1.26.3/go/src/runtime/asm_amd64.s:1771 (0x493380)