File tree Expand file tree Collapse file tree 4 files changed +21
-3
lines changed
Expand file tree Collapse file tree 4 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 55use Cake \Database \Driver \Mysql ;
66use Cake \Log \Engine \FileLog ;
77use Cake \Mailer \Transport \MailTransport ;
8+ use function Cake \Core \env ;
89
910return [
1011 /*
443444 'safeTld ' => env ('DEBUG_KIT_SAFE_TLD ' , null ),
444445 'ignoreAuthorization ' => env ('DEBUG_KIT_IGNORE_AUTHORIZATION ' , false ),
445446 ],
447+
448+ /**
449+ * TestSuite configuration.
450+ *
451+ * ## Options
452+ *
453+ * - `errorLevel` - Defaults to `E_ALL`. Can be set to `false` to disable overwrite error level.
454+ * - `fixtureStrategy` - Defaults to TruncateStrategy. Can be set to any class implementing FixtureStrategyInterface.
455+ */
456+ 'TestSuite ' => [
457+ 'errorLevel ' => null ,
458+ 'fixtureStrategy ' => null ,
459+ ],
446460];
Original file line number Diff line number Diff line change 11<?php
2+
3+ use function Cake \Core \env ;
4+
25/*
36 * Local configuration file to provide any overrides to your app.php configuration.
47 * Copy and save this file as app_local.php and make changes as required.
Original file line number Diff line number Diff line change 4444use Cake \Mailer \TransportFactory ;
4545use Cake \Routing \Router ;
4646use Cake \Utility \Security ;
47+ use function Cake \Core \env ;
4748
4849/*
4950 * Load global functions for collections, translations, debugging etc.
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public function initialize(): void
3939 * beforeFilter callback.
4040 *
4141 * @param \Cake\Event\EventInterface<\Cake\Controller\Controller> $event Event.
42- * @return \Cake\Http\Response|null| void
42+ * @return void
4343 */
4444 public function beforeFilter (EventInterface $ event )
4545 {
@@ -49,7 +49,7 @@ public function beforeFilter(EventInterface $event)
4949 * beforeRender callback.
5050 *
5151 * @param \Cake\Event\EventInterface<\Cake\Controller\Controller> $event Event.
52- * @return \Cake\Http\Response|null| void
52+ * @return void
5353 */
5454 public function beforeRender (EventInterface $ event )
5555 {
@@ -62,7 +62,7 @@ public function beforeRender(EventInterface $event)
6262 * afterFilter callback.
6363 *
6464 * @param \Cake\Event\EventInterface<\Cake\Controller\Controller> $event Event.
65- * @return \Cake\Http\Response|null| void
65+ * @return void
6666 */
6767 public function afterFilter (EventInterface $ event )
6868 {
You can’t perform that action at this time.
0 commit comments