Skip to content

Instantly share code, notes, and snippets.

@triswan
Last active January 18, 2019 02:10
Show Gist options
  • Select an option

  • Save triswan/963df0c4342e109fed89db2e1c23afeb to your computer and use it in GitHub Desktop.

Select an option

Save triswan/963df0c4342e109fed89db2e1c23afeb to your computer and use it in GitHub Desktop.
Clean Code
<?php
function showUser() {
$user = $this->model->getUserById(1);
echo $user->name;
echo $user->email;
echo $user->phone;
}
<?php
function showUser() {
$user = $this->model->getUserById(1);
$this->printUser($user);
}
function printUser($user) {
echo $user->name;
echo $user->email;
echo $user->phone;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment