composer update + SQL Compare refactored
This commit is contained in:
9
Core/Driver/SQL/Join/LeftJoin.class.php
Normal file
9
Core/Driver/SQL/Join/LeftJoin.class.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Core\Driver\SQL\Join;
|
||||
|
||||
class LeftJoin extends Join {
|
||||
public function __construct(string $table, string $columnA, string $columnB, ?string $tableAlias = null, array $conditions = []) {
|
||||
parent::__construct("LEFT", $table, $columnA, $columnB, $tableAlias, $conditions);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user