Renamed internal object names to represent a difference between standard objects and database records.

This commit is contained in:
Netkas 2023-06-20 17:28:01 -04:00
parent 8e2e1eaba1
commit dc15ce5bb9
No known key found for this signature in database
GPG key ID: 5DAF58535614062B
16 changed files with 79 additions and 315 deletions

View file

@ -5,6 +5,7 @@
namespace FederationLib\Objects\Standard;
use FederationLib\Interfaces\SerializableObjectInterface;
use FederationLib\Objects\ClientRecord;
class Client implements SerializableObjectInterface
{
@ -51,9 +52,9 @@
/**
* Client constructor.
*
* @param \FederationLib\Objects\Client|null $client
* @param ClientRecord|null $client
*/
public function __construct(?\FederationLib\Objects\Client $client=null)
public function __construct(?ClientRecord $client=null)
{
if($client === null)
{