Skip to content

Instantly share code, notes, and snippets.

View bhavinrana07's full-sized avatar
🛰️
Ready for mars!

Bhavin Rana bhavinrana07

🛰️
Ready for mars!
View GitHub Profile
@bhavinrana07
bhavinrana07 / interface.php
Last active May 20, 2020 06:18
interface in php
<?php
Interface MyInterface {
public function getName();
public function getAge();
}
class MyClass implements MyFirstInterface{
public function getName() {
echo "My name A".'<br>';
}
public function getAge(){