Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
factory.php
1<?php
10
13
19{
25 public static function getTransports()
26 {
27 return static::getObjectInstances(static::getInterface());
28 }
29
37 public static function getTransport($code)
38 {
39 return static::getObjectInstance(static::getInterface(), $code);
40 }
41
42 protected static function getInterface()
43 {
44 return iBase::class;
45 }
46
47 protected static function getClasses()
48 {
49 return array(
51 );
52 }
53}