| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public static function fromZendClassEntry(ZendClassEntry $zend_class_entry): self |
||
| 22 | { |
||
| 23 | assert($zend_class_entry->default_static_members_table !== null); |
||
| 24 | return new self( |
||
| 25 | $zend_class_entry->default_static_members_table->address, |
||
| 26 | $zend_class_entry->default_static_members_table->size, |
||
| 27 | ); |
||
| 30 |