Skip to content

Instantly share code, notes, and snippets.

@spmsupun
Last active February 22, 2020 16:13
Show Gist options
  • Save spmsupun/5744762e470ccf6b6df6d25a4d4781c2 to your computer and use it in GitHub Desktop.
Save spmsupun/5744762e470ccf6b6df6d25a4d4781c2 to your computer and use it in GitHub Desktop.
SRP Violation
<?php
/**
* Class User
*/
class User
{
/**
* @return string
*/
public function getName(): string
{
return "Bruce Wayne";
}
/**
* @return int
*/
public function getAge(): int
{
return 20;
}
/**
* @return string
*/
public function getBio(): string {
return "Bruce Wayne was born to the wealthy doctor Thomas Wayne and his wife Martha, who were themselves members of the prestigious Wayne and Kane families of Gotham City, respectively.";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment