Release of v3.2.2-beta2

Fix function mismatch call in the compiler power class.
This commit is contained in:
2024-07-17 14:55:57 +02:00
parent b656269527
commit 421bb93ba4
10 changed files with 44 additions and 21 deletions

View File

@ -71,7 +71,7 @@ abstract class Set implements SetInterface
* All active repos
*
* @var array
* @since 3.2.0
* @since 3.2.2
**/
public array $repos;
@ -79,7 +79,7 @@ abstract class Set implements SetInterface
* Table Name
*
* @var string
* @since 3.2.1
* @since 3.2.2
*/
protected string $table;
@ -87,7 +87,7 @@ abstract class Set implements SetInterface
* Area Name
*
* @var string
* @since 3.2.1
* @since 3.2.2
*/
protected string $area;
@ -628,7 +628,7 @@ abstract class Set implements SetInterface
* @param object $item The item
*
* @return array|null
* @since 3.2.0
* @since 3.2.2
*/
protected function getIndexItem(object $item): ?array
{

View File

@ -346,7 +346,7 @@ class Power implements PowerInterface
if ($this->isGuidValid($guid))
{
// now we search for it via the super power paths
if (empty($this->retry[$guid]) && $this->superpower->load($guid, ['remote', 'local']))
if (empty($this->retry[$guid]) && $this->superpower->item($guid, ['remote', 'local']))
{
// we found it and it was loaded into the database
unset($this->state[$guid]);

View File

@ -27,7 +27,7 @@ final class Set extends ExtendingSet implements SetInterface
* Table Name
*
* @var string
* @since 3.2.1
* @since 3.2.2
*/
protected string $table = 'joomla_power';
@ -35,7 +35,7 @@ final class Set extends ExtendingSet implements SetInterface
* Area Name
*
* @var string
* @since 3.2.1
* @since 3.2.2
*/
protected string $area = 'Joomla Power';