In the PDO.php storage,
the AccessTokenInterface, AuthorizationCodeInterface and RefreshTokenInterface implentation returns false if the tokens/codes aren't found. The interface specifies that they should return null.
However, in practice, everything works as intended - but I feel it is by 'coincidence' rather than design.
In the
PDO.php
storage, theAccessTokenInterface
,AuthorizationCodeInterface
andRefreshTokenInterface
implentation returns false if the tokens/codes aren't found. The interface specifies that they should return null.However, in practice, everything works as intended - but I feel it is by 'coincidence' rather than design.