Skip to content

Instantly share code, notes, and snippets.

@bvipul
Created July 21, 2020 03:39
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 bvipul/65c4aa72addab742d0114b27610f35c0 to your computer and use it in GitHub Desktop.
Save bvipul/65c4aa72addab742d0114b27610f35c0 to your computer and use it in GitHub Desktop.
<?php
class NumberOfBikes {
public function __construct() {
$this->bikesCount = 0;
}
public function iHaveABike() {
$this->bikesCount += 1;
if($this->bikesCount == 5) {
echo "You really love bikes";
$this->bikesCount = 0;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment