| Total Complexity | 4 | 
| Total Lines | 32 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 31 | class SqlQueryBuilderFactory implements Contract  | 
            ||
| 32 | { | 
            ||
| 33 | /**  | 
            ||
| 34 | * @inheritDoc  | 
            ||
| 35 | */  | 
            ||
| 36 | public function select(string $table): SelectQueryBuilder  | 
            ||
| 37 |     { | 
            ||
| 38 | return new SqlSelectQueryBuilder(from: $table);  | 
            ||
| 39 | }  | 
            ||
| 40 | |||
| 41 | /**  | 
            ||
| 42 | * @inheritDoc  | 
            ||
| 43 | */  | 
            ||
| 44 | public function insert(string $table): InsertQueryBuilder  | 
            ||
| 45 |     { | 
            ||
| 46 | return new SqlInsertQueryBuilder(from: $table);  | 
            ||
| 47 | }  | 
            ||
| 48 | |||
| 49 | /**  | 
            ||
| 50 | * @inheritDoc  | 
            ||
| 51 | */  | 
            ||
| 52 | public function update(string $table): UpdateQueryBuilder  | 
            ||
| 55 | }  | 
            ||
| 56 | |||
| 57 | /**  | 
            ||
| 58 | * @inheritDoc  | 
            ||
| 59 | */  | 
            ||
| 60 | public function delete(string $table): DeleteQueryBuilder  | 
            ||
| 63 | }  | 
            ||
| 64 | }  | 
            ||
| 65 |