for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yandex\Metrica\Management\Models;
use Yandex\Common\Model;
class Delegate extends Model
{
protected $userLogin = null;
protected $createdAt = null;
protected $comment = null;
protected $mappingClasses = [];
protected $propNameMap = [
'user_login' => 'userLogin',
'created_at' => 'createdAt'
];
/**
* Retrieve the userLogin property
*
* @return string|null
*/
public function getUserLogin()
return $this->userLogin;
}
* Set the userLogin property
* @param string $userLogin
* @return $this
public function setUserLogin($userLogin)
$this->userLogin = $userLogin;
return $this;
* Retrieve the createdAt property
public function getCreatedAt()
return $this->createdAt;
* Set the createdAt property
* @param string $createdAt
public function setCreatedAt($createdAt)
$this->createdAt = $createdAt;
* Retrieve the comment property
public function getComment()
return $this->comment;
* Set the comment property
* @param string $comment
public function setComment($comment)
$this->comment = $comment;