Skip to content

Commit

Permalink
v1.32.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitexus committed Nov 15, 2024
1 parent 63a490b commit 495a754
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"require": {
"vitexsoftware/ease-core": ">= 1.44"
"vitexsoftware/ease-core": "^1.45"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 3 additions & 1 deletion src/Ease/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ public function getFirstPart()
/**
* Insert an array of elements.
*
* @param array $itemes value field or EaseObject with draw () method
* @param array<mixed> $itemes value field or EaseObject with draw () method
*
* @return array<mixed> inserted items
*/
public function addItems(array $itemes): array
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

require_once __DIR__.'/../vendor/autoload.php';

if ((\PHP_SAPI !== 'cli') && (session_status() === 'PHP_SESSION_NONE')) {
if ((\PHP_SAPI !== 'cli') && (session_status() === \PHP_SESSION_NONE)) {
session_start();
} else {
$_SESSION = [];
Expand All @@ -26,4 +26,4 @@

\Ease\Locale::singleton('cs_CZ');
// \Ease\Shared::webPage(new \Ease\WebPage());
\Ease\Shared::user(\Ease\User::singleton(null, '\Ease\User'));
\Ease\Shared::user(new \Ease\User);

0 comments on commit 495a754

Please sign in to comment.