| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function toArray($request) |
||
| 20 | { |
||
| 21 | return [ |
||
| 22 | 'id' => $this->customer->id, |
||
| 23 | 'name' => $this->customer->name, |
||
| 24 | 'nome' => $this->customer->name, |
||
| 25 | 'cpf' => $this->customer->cpf, |
||
| 26 | 'user_token' => $this->token, |
||
| 27 | 'token' => $this->company_token, |
||
| 28 | 'created_at' => (string) $this->created_at, |
||
| 29 | 'updated_at' => (string) $this->updated_at |
||
| 30 | ]; |
||
| 31 | } |
||
| 32 | } |
||
| 33 |