Skip to content

Instantly share code, notes, and snippets.

@phalcon
Last active December 16, 2015 02:49
Show Gist options
  • Select an option

  • Save phalcon/5365374 to your computer and use it in GitHub Desktop.

Select an option

Save phalcon/5365374 to your computer and use it in GitHub Desktop.
<?php
class Foo
{
protected $_myProp = 0;
protected function x()
{
$this->y();
}
protected function y()
{
$this->_myProp++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment