/* Decoded by unphp.net */ * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ declare(strict_types=1); namespace Reli\Lib\PhpProcessReader\PhpMemoryReader\ReferenceContext; use Reli\Lib\PhpProcessReader\PhpMemoryReader\MemoryLocation\StaticMembersTableMemoryLocation; class ClassStaticPropertiesContext implements ReferenceContext { use ReferenceContextDefault; public function __construct( public StaticMembersTableMemoryLocation $memory_location ) { } public function getLocations(): iterable { return [$this->memory_location]; } public function getContexts(): iterable { return [ '#count' => count($this->referencing_contexts), ]; } } ?>