/home/techb158/ileadtechnology.com/vendor/laravel/passport/src
Edit: /home/techb158/ileadtechnology.com/vendor/laravel/passport/src/Scope.php (1106B)
id = $id;
$this->description = $description;
}
/**
* Get the instance as an array.
*
* @return array
*/
public function toArray()
{
return [
'id' => $this->id,
'description' => $this->description,
];
}
/**
* Convert the object to its JSON representation.
*
* @param int $options
* @return string
*/
public function toJson($options = 0)
{
return json_encode($this->toArray(), $options);
}
}