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 | |
/** | |
* Play a round of the name game | |
* | |
* @param string $name The name to play the game with | |
* @return string A Name Game song verse that has the game rules applied to the given name | |
*/ | |
function playGame ($name) | |
{ |
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 | |
abstract class Widget | |
{ | |
const | |
TYPE = ''; | |
protected | |
/** | |
* @var DOMDocument |