Skip to content

Commit b7ae5fc

Browse files
author
rotimi
committed
PHP 8.1 tweaks
1 parent 9fa27d7 commit b7ae5fc

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

psalm.xml

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
errorLevel="1"
44
resolveFromConfigFile="true"
55
allowStringToStandInForClass="true"
6+
findUnusedCode="false"
7+
findUnusedPsalmSuppress="true"
8+
findUnusedBaselineEntry="true"
69
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
710
xmlns="https://getpsalm.org/schema/config"
811
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"

src/GDAO/Model/CollectionInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @copyright (c) 2023, Rotexsoft
1212
*
1313
*/
14-
interface CollectionInterface extends \ArrayAccess, \Countable, \IteratorAggregate
14+
interface CollectionInterface extends \ArrayAccess, \Countable, \IteratorAggregate, \Stringable
1515
{
1616
////////////////////////////////////////////////////////////////////////////
1717
////////////////////////////////////////////////////////////////////////////

src/GDAO/Model/RecordInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
* @copyright (c) 2023, Rotexsoft
1111
*/
12-
interface RecordInterface extends \ArrayAccess, \Countable, \IteratorAggregate
12+
interface RecordInterface extends \ArrayAccess, \Countable, \IteratorAggregate, \Stringable
1313
{
1414
////////////////////////////////////////////////////////////////////////////
1515
////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)