aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/src/Sql/Internal/Join.php
blob: 4c85fd844e1bb30b3ed294c779d44fb1028a84b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

declare(strict_types=1);

namespace Nsfisis\Albatross\Sql\Internal;

final class Join
{
    /**
     * @param 'LEFT JOIN' $type
     */
    public function __construct(
        public readonly string $type,
        public readonly string $table,
        public readonly string $on,
    ) {
    }
}