Skip to content

Instantly share code, notes, and snippets.

@mcsee
Created July 16, 2020 00:37
Show Gist options
  • Save mcsee/d628f6f8a4382b668d6eae966bd6765e to your computer and use it in GitHub Desktop.
Save mcsee/d628f6f8a4382b668d6eae966bd6765e to your computer and use it in GitHub Desktop.
This gist belongs to Clean Code Cookbook http://cleancodecookbook.com By Maximiliano Contieri http://maximilianocontieri.com
<?
final class TwitterAccount {
private $followers;
private function __construct() {
$this->followers = [];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment