Renamed internal object names to represent a difference between standard objects and database records.
This commit is contained in:
parent
8e2e1eaba1
commit
dc15ce5bb9
16 changed files with 79 additions and 315 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue