Skip to content

Instantly share code, notes, and snippets.

@neloy-ahmed
Created January 19, 2019 03:43
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/525f69fb789f39aef4063ebbbc033da5 to your computer and use it in GitHub Desktop.
Save neloy-ahmed/525f69fb789f39aef4063ebbbc033da5 to your computer and use it in GitHub Desktop.
<?php
interface World{
public function draw_map($country_name);
//Fatal error: Access type for interface method World::draw_flag() must be omitted
protected function draw_flag($country_name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment