Skip to content

Instantly share code, notes, and snippets.

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