Файловый менеджер - Редактировать - /home/clickysoft/public_html/standup.clickysoft.net/vendor/doctrine/dbal/src/Query/Join.php
Назад
<?php declare(strict_types=1); namespace Doctrine\DBAL\Query; /** @internal */ final class Join { private function __construct( public readonly string $type, public readonly string $table, public readonly string $alias, public readonly ?string $condition, ) { } public static function inner(string $table, string $alias, ?string $condition): Join { return new self('INNER', $table, $alias, $condition); } public static function left(string $table, string $alias, ?string $condition): Join { return new self('LEFT', $table, $alias, $condition); } public static function right(string $table, string $alias, ?string $condition): Join { return new self('RIGHT', $table, $alias, $condition); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка