1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
singletontrait.php
См. документацию.
1<?php
2
3namespace Bitrix\Socialnetwork\Helper;
4
5use RuntimeException;
6
8{
10
11 private function __construct()
12 {
13 }
14
15 public function __clone()
16 {
17 throw new RuntimeException('Cannot clone a singleton');
18 }
19
20 public function __wakeup()
21 {
22 throw new RuntimeException('Cannot wake up a singleton');
23 }
24}
trait InstanceTrait
Определения instancetrait.php:8
trait SingletonTrait
Определения singletontrait.php:8