Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • adaures/castopod
  • mkljczk/castopod-host
  • spaetz/castopod-host
  • PatrykMis/castopod
  • jonas/castopod
  • ajeremias/castopod
  • misuzu/castopod
  • KrzysztofDomanczyk/castopod
  • Behel/castopod
  • nebulon/castopod
  • ewen/castopod
  • NeoluxConsulting/castopod
  • nateritter/castopod-og
  • prcutler/castopod
14 results
Show changes
Showing
with 1011 additions and 528 deletions
This diff is collapsed.
...@@ -4,12 +4,12 @@ declare(strict_types=1); ...@@ -4,12 +4,12 @@ declare(strict_types=1);
namespace Config; namespace Config;
use CodeIgniter\Config\BaseConfig; use Kint\Parser\ConstructablePluginInterface;
use Kint\Renderer\Renderer; use Kint\Renderer\Rich\TabPluginInterface;
use Kint\Renderer\Rich\ValuePluginInterface;
/** /**
* -------------------------------------------------------------------------- * --------------------------------------------------------------------------
* Kint
* -------------------------------------------------------------------------- * --------------------------------------------------------------------------
* *
* We use Kint's `RichRenderer` and `CLIRenderer`. This area contains options * We use Kint's `RichRenderer` and `CLIRenderer`. This area contains options
...@@ -17,7 +17,7 @@ use Kint\Renderer\Renderer; ...@@ -17,7 +17,7 @@ use Kint\Renderer\Renderer;
* *
* @see https://kint-php.github.io/kint/ for details on these settings. * @see https://kint-php.github.io/kint/ for details on these settings.
*/ */
class Kint extends BaseConfig class Kint
{ {
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
...@@ -26,9 +26,9 @@ class Kint extends BaseConfig ...@@ -26,9 +26,9 @@ class Kint extends BaseConfig
*/ */
/** /**
* @var string[] * @var list<class-string<ConstructablePluginInterface>|ConstructablePluginInterface>|null
*/ */
public array $plugins = []; public ?array $plugins = [];
public int $maxDepth = 6; public int $maxDepth = 6;
...@@ -46,17 +46,15 @@ class Kint extends BaseConfig ...@@ -46,17 +46,15 @@ class Kint extends BaseConfig
public bool $richFolder = false; public bool $richFolder = false;
public int $richSort = Renderer::SORT_FULL;
/** /**
* @var string[] * @var array<string, class-string<ValuePluginInterface>>|null
*/ */
public array $richObjectPlugins = []; public ?array $richObjectPlugins = [];
/** /**
* @var string[] * @var array<string, class-string<TabPluginInterface>>|null
*/ */
public array $richTabPlugins = []; public ?array $richTabPlugins = [];
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
......
This diff is collapsed.
...@@ -27,9 +27,7 @@ class Migrations extends BaseConfig ...@@ -27,9 +27,7 @@ class Migrations extends BaseConfig
* *
* This is the name of the table that will store the current migrations state. * This is the name of the table that will store the current migrations state.
* When migrations runs it will store in a database table which migration * When migrations runs it will store in a database table which migration
* level the system is at. It then compares the migration level in this * files have already been run.
* table to the $config['migration_version'] if they are not the same it
* will migrate up. This must be set.
*/ */
public string $table = 'migrations'; public string $table = 'migrations';
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -21,13 +21,11 @@ class Pager extends BaseConfig ...@@ -21,13 +21,11 @@ class Pager extends BaseConfig
* and the desired group as $pagerGroup; * and the desired group as $pagerGroup;
* *
* @var array<string, string> * @var array<string, string>
*
* @noRector Rector\Php55\Rector\String_\StringClassNameToClassConstantRector
*/ */
public $templates = [ public array $templates = [
'default_full' => 'App\Views\pager\default_full', 'default_full' => 'App\Views\pager\default_full',
'default_simple' => 'CodeIgniter\Pager\Views\default_simple', 'default_simple' => 'CodeIgniter\Pager\Views\default_simple',
'default_head' => 'CodeIgniter\Pager\Views\default_head', 'default_head' => 'CodeIgniter\Pager\Views\default_head',
]; ];
/** /**
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.