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
/* | |
Understanding and Applying Polymorphism in PHP: | |
http://code.tutsplus.com/tutorials/understanding-and-applying-polymorphism-in-php--net-14362 | |
*/ | |
interface MyInterface { | |
// methods | |
} |
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
/* challenges */ | |
// HELLO WORLD | |
// __________________________________________ | |
/* COMPLETED: | |
console.log('HELLO WORLD'); | |
*/ |
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 | |
/** | |
* From a list of items with priorities gets one based on their priority. | |
*/ | |
class PriorityCalculator | |
{ | |
public var $data = array(); | |
public var $universe = 0; |