diff --git a/plugins/baser-core/src/Plugin.php b/plugins/baser-core/src/Plugin.php index fe31d6b04a..99c67b15b8 100644 --- a/plugins/baser-core/src/Plugin.php +++ b/plugins/baser-core/src/Plugin.php @@ -614,7 +614,7 @@ public function services(ContainerInterface $container): void * @param CommandCollection $commands * @return CommandCollection * @checked - * @checked + * @noTodo */ public function console(CommandCollection $commands): CommandCollection { diff --git a/plugins/baser-core/src/Utility/BcAgent.php b/plugins/baser-core/src/Utility/BcAgent.php index cfc8677405..7ab9ca06a9 100644 --- a/plugins/baser-core/src/Utility/BcAgent.php +++ b/plugins/baser-core/src/Utility/BcAgent.php @@ -48,7 +48,7 @@ class BcAgent extends BcAbstractDetector * * @checked * @unitTest - + * @noTodo */ protected function _setConfig(array $config) { @@ -58,11 +58,11 @@ protected function _setConfig(array $config) /** * デフォルトの設定値を取得 - * @checked - * @unitTest - * * @return array + * @checked + * @unitTest + * @noTodo */ protected function _getDefaultConfig() { @@ -75,10 +75,10 @@ protected function _getDefaultConfig() /** * ユーザーエージェントの判定用正規表現を取得 * + * @return string * @checked * @unitTest - * - * @return string + * @noTodo */ public function getDetectorRegex() { @@ -89,10 +89,9 @@ public function getDetectorRegex() /** * ユーザーエージェントがキーワードを含むかどうかを判定 * + * @return bool * @checked * @unitTest - * - * @return bool */ public function isMatchDecisionKey() { diff --git a/plugins/baser-core/src/Utility/BcUtil.php b/plugins/baser-core/src/Utility/BcUtil.php index 1f2946ab35..68dabcbff0 100644 --- a/plugins/baser-core/src/Utility/BcUtil.php +++ b/plugins/baser-core/src/Utility/BcUtil.php @@ -497,7 +497,7 @@ static public function includePluginClass($pluginName) * @return void * @checked * @unitTest - * @note(value="viewキャッシュ/dataキャッシュ実装時に対応") + * @noTodo */ public static function clearAllCache(): void { @@ -1076,6 +1076,7 @@ public static function getContentsItem(): array * baserCMSのインストールが完了しているかチェックする * @return boolean * @checked + * @noTodo */ public static function isInstalled() { diff --git a/plugins/baser-core/src/View/BcFrontEmailView.php b/plugins/baser-core/src/View/BcFrontEmailView.php index 54fd1daabf..df63980561 100644 --- a/plugins/baser-core/src/View/BcFrontEmailView.php +++ b/plugins/baser-core/src/View/BcFrontEmailView.php @@ -33,6 +33,7 @@ class BcFrontEmailView extends View * * @checked * @unitTest + * @noTodo */ public function initialize(): void { diff --git a/plugins/baser-core/src/View/Helper/BcBaserHelper.php b/plugins/baser-core/src/View/Helper/BcBaserHelper.php index b6daf092f6..68e530e6e7 100755 --- a/plugins/baser-core/src/View/Helper/BcBaserHelper.php +++ b/plugins/baser-core/src/View/Helper/BcBaserHelper.php @@ -685,6 +685,7 @@ public function contentsName($detail = false, $options = []) * @return string * @checked * @unitTest + * @noTodo * @doc */ public function getContentsName($detail = false, $options = []) @@ -794,7 +795,7 @@ public function getContentsName($detail = false, $options = []) * @return string URL * @checked * @unitTest - * @note(value="$sessionId について実装検討要") + * @noTodo */ public function getUrl($url = null, $full = false) { diff --git a/plugins/baser-core/src/View/Helper/BcFormHelper.php b/plugins/baser-core/src/View/Helper/BcFormHelper.php index 50dc763b55..d7793f6ea3 100644 --- a/plugins/baser-core/src/View/Helper/BcFormHelper.php +++ b/plugins/baser-core/src/View/Helper/BcFormHelper.php @@ -95,7 +95,7 @@ class BcFormHelper extends FormHelper * @param string $type フォームのタイプ タイプごとにイベントの登録ができる * @return string 行データ * @checked - * @note(value="フォームの最後のフィールドの後に発動するイベント") + * @noTodo */ public function dispatchAfterForm($type = ''): string { diff --git a/plugins/bc-blog/src/Controller/Admin/BlogContentsController.php b/plugins/bc-blog/src/Controller/Admin/BlogContentsController.php index 80725c8c7a..ce71901870 100755 --- a/plugins/bc-blog/src/Controller/Admin/BlogContentsController.php +++ b/plugins/bc-blog/src/Controller/Admin/BlogContentsController.php @@ -58,6 +58,7 @@ public function initialize(): void * @return void|ResponseInterface * @checked * @unitTest + * @noTodo */ public function edit(BlogContentsAdminServiceInterface $service, int $id) { diff --git a/plugins/bc-custom-content/src/Model/Table/CustomContentsTable.php b/plugins/bc-custom-content/src/Model/Table/CustomContentsTable.php index ac5e3cd4ca..f9d45595a3 100644 --- a/plugins/bc-custom-content/src/Model/Table/CustomContentsTable.php +++ b/plugins/bc-custom-content/src/Model/Table/CustomContentsTable.php @@ -30,6 +30,7 @@ class CustomContentsTable extends AppTable * @param array $config テーブル設定 * @checked * @unitTest + * @noTodo */ public function initialize(array $config): void { diff --git a/plugins/bc-installer/src/Controller/Admin/InstallationsController.php b/plugins/bc-installer/src/Controller/Admin/InstallationsController.php index d7bc3b8456..fb358cd9f9 100644 --- a/plugins/bc-installer/src/Controller/Admin/InstallationsController.php +++ b/plugins/bc-installer/src/Controller/Admin/InstallationsController.php @@ -27,6 +27,7 @@ use BaserCore\Annotation\UnitTest; use BaserCore\Annotation\NoTodo; use BaserCore\Annotation\Checked; +use Psr\Http\Message\ResponseInterface; /** * Class InstallationsController @@ -46,6 +47,7 @@ class InstallationsController extends BcAdminAppController * * @return void * @checked + * @noTodo */ public function beforeFilter(EventInterface $event) { @@ -138,8 +140,9 @@ public function step3(InstallationsAdminServiceInterface $service) * Step 4: データベース生成/管理者ユーザー作成 * * @param InstallationsAdminService $service - * @return void + * @return void|ResponseInterface * @checked + * @noTodo */ public function step4(InstallationsAdminServiceInterface $service) { diff --git a/plugins/bc-installer/src/Service/Admin/InstallationsAdminService.php b/plugins/bc-installer/src/Service/Admin/InstallationsAdminService.php index 7444c92e86..14265b9c0c 100644 --- a/plugins/bc-installer/src/Service/Admin/InstallationsAdminService.php +++ b/plugins/bc-installer/src/Service/Admin/InstallationsAdminService.php @@ -134,6 +134,7 @@ public function getDefaultValuesStep4(ServerRequest $request): array * @param array $data * @return void * @checked + * @noTodo */ public function writeDbSettingToSession(ServerRequest $request, array $data): void { @@ -330,6 +331,7 @@ public function login(ServerRequest $request, Response $response): void * * @param ServerRequest $request * @checked + * @noTodo */ public function initDb(ServerRequest $request): void { diff --git a/plugins/bc-mail/src/Model/Validation/MailMessageValidation.php b/plugins/bc-mail/src/Model/Validation/MailMessageValidation.php index 9ae91c684f..577ad727d4 100644 --- a/plugins/bc-mail/src/Model/Validation/MailMessageValidation.php +++ b/plugins/bc-mail/src/Model/Validation/MailMessageValidation.php @@ -108,6 +108,7 @@ public static function checkdate($value){ * @param array $context * @return bool * @checked + * @noTodo */ public static function checkSame(string $value, string $target, array $context) { diff --git a/plugins/bc-mail/src/Service/MailContentsService.php b/plugins/bc-mail/src/Service/MailContentsService.php index 397cb2465f..f6d6241318 100644 --- a/plugins/bc-mail/src/Service/MailContentsService.php +++ b/plugins/bc-mail/src/Service/MailContentsService.php @@ -237,6 +237,7 @@ public function getList() * @return EntityInterface $result * @checked * @unitTest + * @noTodo */ public function copy($postData) { diff --git a/plugins/bc-widget-area/src/Service/WidgetAreasService.php b/plugins/bc-widget-area/src/Service/WidgetAreasService.php index 75f0bbefb9..915d8c55fa 100644 --- a/plugins/bc-widget-area/src/Service/WidgetAreasService.php +++ b/plugins/bc-widget-area/src/Service/WidgetAreasService.php @@ -137,6 +137,7 @@ public function delete(int $id) * @return array * @checked * @unitTest + * @noTodo */ public function getTitlesById(array $ids): array { @@ -150,6 +151,7 @@ public function getTitlesById(array $ids): array * @return bool * @checked * @unitTest + * @noTodo */ public function batch(string $method, array $ids): bool {