Skip to content

Instantly share code, notes, and snippets.

View trivago-makbarof's full-sized avatar

Moein Akbarof trivago-makbarof

View GitHub Profile
@trivago-makbarof
trivago-makbarof / Person.php
Created March 22, 2016 08:54
Allow modification of object only upon creation
<?php
class Person
{
private $firstName;
private $lastName;
private function __construct()
{