mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 09:49:22 +02:00
Fix compatibility with PHP 8.1
This commit is contained in:
parent
036abf83e5
commit
1d1e927d56
@ -11,7 +11,7 @@
|
|||||||
defined('MYAAC') or die('Direct access not allowed!');
|
defined('MYAAC') or die('Direct access not allowed!');
|
||||||
|
|
||||||
$configForumTablePrefix = config('forum_table_prefix');
|
$configForumTablePrefix = config('forum_table_prefix');
|
||||||
if(!empty(trim($configForumTablePrefix))) {
|
if(null !== $configForumTablePrefix && !empty(trim($configForumTablePrefix))) {
|
||||||
if(!in_array($configForumTablePrefix, array('myaac_', 'z_'))) {
|
if(!in_array($configForumTablePrefix, array('myaac_', 'z_'))) {
|
||||||
throw new RuntimeException('Invalid value for forum_table_prefix in config.php. Can be only: "myaac_" or "z_".');
|
throw new RuntimeException('Invalid value for forum_table_prefix in config.php. Can be only: "myaac_" or "z_".');
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
* @property-read int $access Access level.
|
* @property-read int $access Access level.
|
||||||
* @tutorial POT/Accounts.pkg
|
* @tutorial POT/Accounts.pkg
|
||||||
*/
|
*/
|
||||||
class OTS_Account extends OTS_Row_DAO implements IteratorAggregate, Countable
|
class OTS_Account extends OTS_Row_DAO implements Countable
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Account data.
|
* Account data.
|
||||||
@ -1105,7 +1105,7 @@ class OTS_Account extends OTS_Row_DAO implements IteratorAggregate, Countable
|
|||||||
* @throws PDOException On PDO operation error.
|
* @throws PDOException On PDO operation error.
|
||||||
* @return int Count of players.
|
* @return int Count of players.
|
||||||
*/
|
*/
|
||||||
public function count()
|
public function count(): int
|
||||||
{
|
{
|
||||||
return $this->getPlayersList()->count();
|
return $this->getPlayersList()->count();
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
* @property-write int $offset Sets OFFSET clause.
|
* @property-write int $offset Sets OFFSET clause.
|
||||||
* @property-write OTS_SQLFilter $filter Sets filter for list SQL query.
|
* @property-write OTS_SQLFilter $filter Sets filter for list SQL query.
|
||||||
*/
|
*/
|
||||||
abstract class OTS_Base_List implements IOTS_DAO, Iterator, Countable
|
abstract class OTS_Base_List implements IOTS_DAO, Countable
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Database connection.
|
* Database connection.
|
||||||
@ -203,7 +203,7 @@ abstract class OTS_Base_List implements IOTS_DAO, Iterator, Countable
|
|||||||
*
|
*
|
||||||
* @throws PDOException On PDO operation error.
|
* @throws PDOException On PDO operation error.
|
||||||
*/
|
*/
|
||||||
public function rewind()
|
public function rewind(): void
|
||||||
{
|
{
|
||||||
$this->rows = $this->db->query( $this->getSQL() )->fetchAll();
|
$this->rows = $this->db->query( $this->getSQL() )->fetchAll();
|
||||||
}
|
}
|
||||||
@ -211,7 +211,7 @@ abstract class OTS_Base_List implements IOTS_DAO, Iterator, Countable
|
|||||||
/**
|
/**
|
||||||
* Moves to next row.
|
* Moves to next row.
|
||||||
*/
|
*/
|
||||||
public function next()
|
public function next(): void
|
||||||
{
|
{
|
||||||
next($this->rows);
|
next($this->rows);
|
||||||
}
|
}
|
||||||
@ -231,7 +231,7 @@ abstract class OTS_Base_List implements IOTS_DAO, Iterator, Countable
|
|||||||
*
|
*
|
||||||
* @return bool Does next row exist.
|
* @return bool Does next row exist.
|
||||||
*/
|
*/
|
||||||
public function valid()
|
public function valid(): bool
|
||||||
{
|
{
|
||||||
return key($this->rows) !== null;
|
return key($this->rows) !== null;
|
||||||
}
|
}
|
||||||
@ -243,7 +243,7 @@ abstract class OTS_Base_List implements IOTS_DAO, Iterator, Countable
|
|||||||
* @return int Number of rows.
|
* @return int Number of rows.
|
||||||
* @throws PDOException On PDO operation error.
|
* @throws PDOException On PDO operation error.
|
||||||
*/
|
*/
|
||||||
public function count()
|
public function count(): int
|
||||||
{
|
{
|
||||||
return $this->db->query( $this->getSQL(true) )->fetchColumn();
|
return $this->db->query( $this->getSQL(true) )->fetchColumn();
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
* @property-read int $id Row ID.
|
* @property-read int $id Row ID.
|
||||||
* @property-read OTS_Players_List $playersList List of members of this group.
|
* @property-read OTS_Players_List $playersList List of members of this group.
|
||||||
*/
|
*/
|
||||||
class OTS_Group extends OTS_Row_DAO implements IteratorAggregate, Countable
|
class OTS_Group extends OTS_Row_DAO implements Countable
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Group data.
|
* Group data.
|
||||||
@ -552,7 +552,7 @@ class OTS_Group extends OTS_Row_DAO implements IteratorAggregate, Countable
|
|||||||
* @throws PDOException On PDO operation error.
|
* @throws PDOException On PDO operation error.
|
||||||
* @return int Count of players.
|
* @return int Count of players.
|
||||||
*/
|
*/
|
||||||
public function count()
|
public function count(): int
|
||||||
{
|
{
|
||||||
return $this->getPlayersList()->count();
|
return $this->getPlayersList()->count();
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
* @package POT
|
* @package POT
|
||||||
* @version 0.1.3
|
* @version 0.1.3
|
||||||
*/
|
*/
|
||||||
class OTS_Groups_List implements IteratorAggregate, Countable
|
class OTS_Groups_List implements Countable
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Groups.
|
* Groups.
|
||||||
@ -210,7 +210,7 @@ class OTS_Groups_List implements IteratorAggregate, Countable
|
|||||||
* @since 0.1.5
|
* @since 0.1.5
|
||||||
* @return int Amount of all groups.
|
* @return int Amount of all groups.
|
||||||
*/
|
*/
|
||||||
public function count()
|
public function count(): int
|
||||||
{
|
{
|
||||||
return count($this->groups);
|
return count($this->groups);
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
* @property-write IOTS_GuildAction $requestsDriver Membership requests handler.
|
* @property-write IOTS_GuildAction $requestsDriver Membership requests handler.
|
||||||
* @tutorial POT/Guilds.pkg
|
* @tutorial POT/Guilds.pkg
|
||||||
*/
|
*/
|
||||||
class OTS_Guild extends OTS_Row_DAO implements IteratorAggregate, Countable
|
class OTS_Guild extends OTS_Row_DAO implements Countable
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Guild data.
|
* Guild data.
|
||||||
@ -723,7 +723,7 @@ class OTS_Guild extends OTS_Row_DAO implements IteratorAggregate, Countable
|
|||||||
* @throws PDOException On PDO operation error.
|
* @throws PDOException On PDO operation error.
|
||||||
* @return int Count of ranks.
|
* @return int Count of ranks.
|
||||||
*/
|
*/
|
||||||
public function count()
|
public function count(): int
|
||||||
{
|
{
|
||||||
return $this->getGuildRanksList()->count();
|
return $this->getGuildRanksList()->count();
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
* @property-read int $id Row ID.
|
* @property-read int $id Row ID.
|
||||||
* @property-read OTS_Players_List $playersList List of members with this rank.
|
* @property-read OTS_Players_List $playersList List of members with this rank.
|
||||||
*/
|
*/
|
||||||
class OTS_GuildRank extends OTS_Row_DAO implements IteratorAggregate, Countable
|
class OTS_GuildRank extends OTS_Row_DAO implements Countable
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Rank data.
|
* Rank data.
|
||||||
@ -410,7 +410,7 @@ class OTS_GuildRank extends OTS_Row_DAO implements IteratorAggregate, Countable
|
|||||||
* @throws PDOException On PDO operation error.
|
* @throws PDOException On PDO operation error.
|
||||||
* @return int Count of players.
|
* @return int Count of players.
|
||||||
*/
|
*/
|
||||||
public function count()
|
public function count(): int
|
||||||
{
|
{
|
||||||
return $this->getPlayersList()->count();
|
return $this->getPlayersList()->count();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user