Skip to content

Instantly share code, notes, and snippets.

@basz
Created January 28, 2016 14:14
Show Gist options
  • Select an option

  • Save basz/20e8e34a4917456f376b to your computer and use it in GitHub Desktop.

Select an option

Save basz/20e8e34a4917456f376b to your computer and use it in GitHub Desktop.
private $property;
public function method()
{
$token = new self();
$token->property = 'something'; // feels like a violation of the private accessor, but indeed it is not....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment