Last active
May 14, 2018 14:29
-
-
Save myvitaliy/59a199cdc3c4371493724269741f7061 to your computer and use it in GitHub Desktop.
index.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'Car.php'; | |
require_once 'CanMove.php'; | |
use twelve\Car; | |
use twelve\CanMove; | |
$car = new Car(); | |
$car->move(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment