Created
June 10, 2016 10:40
-
-
Save maxbmx/d2f85ff09a09c97a377a8f42d6dfabe2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 | |
**/ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Best library ever!