Skip to content

Instantly share code, notes, and snippets.

@vanbrabantf
Last active April 2, 2021 12:25
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 vanbrabantf/97f421deb5c824f38dd8656077450f69 to your computer and use it in GitHub Desktop.
Save vanbrabantf/97f421deb5c824f38dd8656077450f69 to your computer and use it in GitHub Desktop.
<?php
$car = new Car(4, 'Honda');
class Car
{
private $wheels;
private $engine;
public function __construct($wheels, $engine)
{
$this->wheels = $wheels;
$this->engine = $engine;
}
public function getWheels()
{
return $this->wheels;
}
public function getEngine()
{
return $this->engine;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment