示例#1
0
 /**
  * {@inheritdoc}
  */
 public function toArray()
 {
     if ($this->user->isEmpty()) {
         return ['user' => null, 'pass' => null];
     }
     return ['user' => $this->user->__toString(), 'pass' => $this->pass->isEmpty() ? null : $this->pass->__toString()];
 }