| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | final class RegionalMemoryLocations |
||
| 19 | { |
||
| 20 | public function __construct( |
||
| 21 | public MemoryLocations $locations_in_zend_mm_heap, |
||
| 22 | public MemoryLocations $locations_in_vm_stack, |
||
| 23 | public MemoryLocations $locations_in_compiler_arena, |
||
| 24 | public MemoryLocations $locations_outside_of_zend_mm_heap, |
||
| 25 | ) { |
||
| 26 | } |
||
| 27 | |||
| 28 | public static function createDefault(): self |
||
| 35 | ); |
||
| 36 | } |
||
| 38 |