Source for file FreezableObject.php
Documentation is available at FreezableObject.php
- 1: <?php
- 3: /**
- 4: * Nette Framework
- 5: *
- 11: */
- 15: /**
- 16: * Defines an object that has a modifiable state and a read-only (frozen) state.
- 17: *
- 20: *
- 22: */
- 24: {
- 30: /**
- 31: * Makes the object unmodifiable.
- 33: */
- 35: {
- 37: }
- 41: /**
- 42: * Is the object unmodifiable?
- 44: */
- 46: {
- 48: }
- 52: /**
- 53: * Creates a modifiable clone of the object.
- 55: */
- 57: {
- 59: }
- 63: /**
- 65: */
- 67: {
- 70: }
- 71: }
- 73: }