Skip to content

Instantly share code, notes, and snippets.

@maxbmx
Created June 10, 2016 10:40
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 maxbmx/d2f85ff09a09c97a377a8f42d6dfabe2 to your computer and use it in GitHub Desktop.
Save maxbmx/d2f85ff09a09c97a377a8f42d6dfabe2 to your computer and use it in GitHub Desktop.
<?php
namespace Ageno\DecoMorreno;
class DecoMorreno
{
const LIGHT_TYPE = 1;
const DARK_TYPE = 2;
const EXTRA_DARK_TYPE = 3;
public function init()
{
$bestQuality = true;
$this->cook(self::EXTRA_DARK_TYPE, $bestQuality);
}
public function cook($type, $bestQuality)
{
/**
* Solve the problem
**/
}
}
@kowalikus
Copy link

Best library ever!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment