## Before formatting:  ## After formatting:  ## Code snippet for tests: ``` class Tasks { public function __construct( private string $task, private string $stop ) { $this->task = $task; } private function getTask() { return $this->task; } } new Tasks('Do something', 'or stop'); ```