Skip to content

Instantly share code, notes, and snippets.

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 danielpotthast/5036d40664ae4366f9f756309c057f07 to your computer and use it in GitHub Desktop.
Save danielpotthast/5036d40664ae4366f9f756309c057f07 to your computer and use it in GitHub Desktop.
<?php
namespace Demo;
interface ProductListInterface
{
/**
* Checks if the product is listed.
*
* @return bool
*/
public function isListed();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment