Skip to content

Instantly share code, notes, and snippets.

@infinitypaul
Created August 22, 2019 16:38
Show Gist options
  • Save infinitypaul/6d27a977f17c381823263f642d8bab90 to your computer and use it in GitHub Desktop.
Save infinitypaul/6d27a977f17c381823263f642d8bab90 to your computer and use it in GitHub Desktop.
<?php
class User {
public function create(array $data){
try {
//Save User To Database
} catch (Exception $exception){
$this->logError($exception->getMessage());
}
}
public function edit(){
//Edit User Record
}
public function logError($message){
// Write Error To File
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment