1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
instancetrait.php
См. документацию.
1<?php
2
3declare(strict_types=1);
4
5namespace Bitrix\Socialnetwork\Helper;
6
8{
9 protected static ?self $instance = null;
10
11 public static function getInstance(): static
12 {
13 if (static::$instance === null)
14 {
15 static::$instance = new static();
16 }
17
18 return static::$instance;
19 }
20}
trait InstanceTrait
Определения instancetrait.php:8
$instance
Определения ps_b24_final.php:14