Skip to content

Instantly share code, notes, and snippets.

@neloy-ahmed
Created January 19, 2019 04:13
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 neloy-ahmed/f61fac294e8f6609c987bcaa45ef44d0 to your computer and use it in GitHub Desktop.
Save neloy-ahmed/f61fac294e8f6609c987bcaa45ef44d0 to your computer and use it in GitHub Desktop.
<?php
interface World{
public function draw_map($country_name);
public function draw_flag($country_name);
const b = 'Interface constant';
//Fatal error: Interfaces may not include member variables
public $var1 = 'hello ' . 'world';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment