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