post = $hooks->wrap($post); $this->command = $hooks->wrap($command); $this->query = $hooks->wrap($query); } public function execute( $id ) { $model = $this->query->findById( $id ); $title = $this->post->get('title'); $description = $this->post->get('description'); $this->command->changeTitle( $model, $title, $description ); $return = array( 'admin/employees', '__Employee Updated__' ); return $return; } }