Skip to content

Instantly share code, notes, and snippets.

@cyrilletuzi
Created January 28, 2017 21:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cyrilletuzi/fe88190c003eef61e0f1ed2ed24a97db to your computer and use it in GitHub Desktop.
Save cyrilletuzi/fe88190c003eef61e0f1ed2ed24a97db to your computer and use it in GitHub Desktop.
<?php
class User {
public $firstName;
public function __construct($firstName) {
$this->firstName = $firstName;
}
public function sayHello() {}
}
$myUser = new User('Henri');
$myUser->firstName;
$myUser->sayHello();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment