Fix psalm
This commit is contained in:
parent
910d866e56
commit
c8f2e33b57
@ -35,10 +35,5 @@
|
||||
<directory name="stubs" />
|
||||
</errorLevel>
|
||||
</InvalidReturnType>
|
||||
<PropertyNotSetInConstructor>
|
||||
<errorLevel type="suppress">
|
||||
<directory name="stubs" />
|
||||
</errorLevel>
|
||||
</PropertyNotSetInConstructor>
|
||||
</issueHandlers>
|
||||
</psalm>
|
||||
|
@ -31,6 +31,8 @@ use OCP\AppFramework\Db\Entity;
|
||||
*/
|
||||
class EpisodeActionEntity extends Entity implements \JsonSerializable
|
||||
{
|
||||
public $id;
|
||||
|
||||
/**
|
||||
* @return EpisodeActionType[]
|
||||
*/
|
||||
|
@ -13,6 +13,10 @@ use OCP\IDBConnection;
|
||||
*/
|
||||
class EpisodeActionMapper extends QBMapper
|
||||
{
|
||||
protected $tableName;
|
||||
protected $entityClass;
|
||||
protected $db;
|
||||
|
||||
public function __construct(IDBConnection $db) {}
|
||||
|
||||
/**
|
||||
|
@ -8,6 +8,8 @@ use OCP\AppFramework\Db\Entity;
|
||||
|
||||
class SubscriptionChangeEntity extends Entity implements \JsonSerializable
|
||||
{
|
||||
public $id;
|
||||
|
||||
/**
|
||||
* @return array<string,mixed>
|
||||
*/
|
||||
|
@ -12,6 +12,10 @@ use OCP\IDBConnection;
|
||||
*/
|
||||
class SubscriptionChangeMapper extends QBMapper
|
||||
{
|
||||
protected $tableName;
|
||||
protected $entityClass;
|
||||
protected $db;
|
||||
|
||||
public function __construct(IDBConnection $db) {}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user