You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuticatePermissionsDbo.php 772B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * AUTO GENERATED BY LUTICATE GENERATOR
  4. * ANY CHANGES WILL BE OVERWRITTEN
  5. */
  6. namespace Luticate\Auth\DBO;
  7. use Luticate\Utils\LuDbo;
  8. class LuticatePermissionsDbo extends LuDbo {
  9. public function jsonSerialize()
  10. {
  11. return array(
  12. "Name" => $this->_name,
  13. "Value" => $this->_value
  14. );
  15. }
  16. /**
  17. * @var string
  18. */
  19. protected $_name;
  20. public function getName()
  21. {
  22. return $this->_name;
  23. }
  24. public function setName($value)
  25. {
  26. $this->_name = $value;
  27. }
  28. /**
  29. * @var boolean
  30. */
  31. protected $_value;
  32. public function getValue()
  33. {
  34. return $this->_value;
  35. }
  36. public function setValue($value)
  37. {
  38. $this->_value = $value;
  39. }
  40. }