post = $post; $this->notificator = $notificator; } public function execute() { $isOff = $this->post->get('notifications_turnoff'); if( $isOff ){ $this->notificator->setOff(); } else { $this->notificator->setOn(); } $to = '-referrer-'; $msg = NULL; $return = array( $to, $msg ); return $return; } }