Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/develop' into 4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsn committed Oct 17, 2024
2 parents f5b2100 + 81e6289 commit b068de9
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 15 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"phpunit/phpcov": "^9.0.2 || ^10.0",
"phpunit/phpunit": "^10.5.16 || ^11.2",
"predis/predis": "^1.1 || ^2.0",
"rector/rector": "1.2.6"
"rector/rector": "1.2.7"
},
"replace": {
"codeigniter4/framework": "self.version"
Expand Down
12 changes: 0 additions & 12 deletions phpstan-baseline.php
Original file line number Diff line number Diff line change
Expand Up @@ -15019,18 +15019,6 @@
'count' => 2,
'path' => __DIR__ . '/tests/system/Helpers/FilesystemHelperTest.php',
];
$ignoreErrors[] = [
// identifier: property.phpDocType
'message' => '#^PHPDoc tag @var for property CodeIgniter\\\\Helpers\\\\FilesystemHelperTest\\:\\:\\$structure with type mixed is not subtype of native type array\\.$#',
'count' => 1,
'path' => __DIR__ . '/tests/system/Helpers/FilesystemHelperTest.php',
];
$ignoreErrors[] = [
// identifier: missingType.iterableValue
'message' => '#^Property CodeIgniter\\\\Helpers\\\\FilesystemHelperTest\\:\\:\\$structure type has no value type specified in iterable type array\\.$#',
'count' => 1,
'path' => __DIR__ . '/tests/system/Helpers/FilesystemHelperTest.php',
];
$ignoreErrors[] = [
// identifier: argument.type
'message' => '#^Parameter \\#2 \\$value of function form_hidden expects array\\|string, null given\\.$#',
Expand Down
2 changes: 1 addition & 1 deletion system/Session/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public function start()
}

$this->initVars();
$this->logger->info("Session: Class initialized using '" . $this->config->driver . "' driver.");
$this->logger->debug("Session: Class initialized using '" . $this->config->driver . "' driver.");

return $this;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/system/Helpers/FilesystemHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
final class FilesystemHelperTest extends CIUnitTestCase
{
/**
* @var array<string, array<string, list<mixed>>>|array<string, array<string, string>>|array<string, list<mixed>>|array<string, mixed>|array<string, string>|mixed
* @var array<string, array<string, list<mixed>>>|array<string, array<string, string>>|array<string, list<mixed>>|array<string, mixed>|array<string, string>
*/
private array $structure;

Expand Down
1 change: 1 addition & 0 deletions user_guide_src/source/changelogs/v4.5.6.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Deprecations
**********
Bugs Fixed
**********
- **Session Library:** The session initialization debug message now uses the correct log type "debug" instead of "info".

See the repo's
`CHANGELOG.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md>`_
Expand Down

0 comments on commit b068de9

Please sign in to comment.