[AUTOGENERATED] Update autogenerated code

This commit is contained in:
Hugo Sales
2020-06-30 18:20:50 +00:00
committed by Hugo Sales
parent 2eab90bbb0
commit 97b583aee7
37 changed files with 361 additions and 754 deletions

View File

@@ -39,30 +39,28 @@ class FollowQueue
{
// {{{ Autocode
private int $subscriber;
private int $subscribed;
private DateTimeInterface $created;
private int $follower;
private int $followed;
private \DateTimeInterface $created;
public function setSubscriber(int $subscriber): self
public function setFollower(int $follower): self
{
$this->subscriber = $subscriber;
$this->follower = $follower;
return $this;
}
public function getSubscriber(): int
public function getFollower(): int
{
return $this->subscriber;
return $this->follower;
}
public function setSubscribed(int $subscribed): self
public function setFollowed(int $followed): self
{
$this->subscribed = $subscribed;
$this->followed = $followed;
return $this;
}
public function getSubscribed(): int
public function getFollowed(): int
{
return $this->subscribed;
return $this->followed;
}
public function setCreated(DateTimeInterface $created): self
@@ -70,7 +68,6 @@ class FollowQueue
$this->created = $created;
return $this;
}
public function getCreated(): DateTimeInterface
{
return $this->created;