Skip to content

Commit c84deb8

Browse files
authored
Merge pull request #19 from citrus-framework/fix_remove_query_builder
クエリビルダの削除
2 parents 0ad5108 + df56c3a commit c84deb8

File tree

18 files changed

+4
-495
lines changed

18 files changed

+4
-495
lines changed

phpinsights.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
],
6868
SlevomatCodingStandard\Sniffs\Commenting\DocCommentSpacingSniff::class => [
6969
'linesCountBeforeFirstContent' => 0,
70-
'linesCountBetweenDescriptionAndAnnotations' => 1,
70+
'linesCountBetweenDescriptionAndAnnotations' => 0,
7171
'linesCountBetweenDifferentAnnotationsTypes' => 0,
7272
'linesCountBetweenAnnotationsGroups' => 0,
7373
'linesCountAfterLastContent' => 0,

src/Database/Generate.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ class Generate extends Configurable
3535
/** @var CatalogManager|null カタログマネージャ */
3636
protected CatalogManager|null $catalogManager = null;
3737

38-
39-
4038
/**
4139
* {@inheritDoc}
4240
*/
@@ -59,7 +57,6 @@ public function loadConfigures(array $configures = []): Configurable
5957

6058
/**
6159
* Conditionクラスの生成
62-
*
6360
* @param string $class_prefix クラス接頭辞
6461
*/
6562
public function condition(string $class_prefix): void
@@ -91,7 +88,6 @@ public function condition(string $class_prefix): void
9188

9289
/**
9390
* Daoクラスの生成
94-
*
9591
* @param string $class_prefix クラス接頭辞
9692
* @param string $table_name テーブル名
9793
*/
@@ -125,7 +121,6 @@ public function dao(string $class_prefix, string $table_name): void
125121

126122
/**
127123
* Propertyクラスの生成
128-
*
129124
* @param string $class_prefix クラス接頭辞
130125
* @param string $table_name テーブル名
131126
*/
@@ -193,7 +188,6 @@ public function property(string $class_prefix, string $table_name): void
193188

194189
/**
195190
* クラスの一括生成
196-
*
197191
* @param string $class_prefix クラス接頭辞
198192
* @param string $table_name テーブル名
199193
*/
@@ -241,7 +235,6 @@ protected function configureRequires(): array
241235

242236
/**
243237
* テーブルカラムの型からPHPの型に変換
244-
*
245238
* @param string $data_type カラムデータタイプ
246239
* @return string PHPの型
247240
*/

src/Database/GenerateCommand.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,8 @@ class GenerateCommand extends Console
2525
'class_prefix:',
2626
];
2727

28-
29-
3028
/**
3129
* {@inheritDoc}
32-
*
3330
* @throws ConfigureException
3431
*/
3532
public function execute(): void

src/Query/Builder.php

Lines changed: 0 additions & 315 deletions
This file was deleted.

0 commit comments

Comments
 (0)