(Move each criterion that you evaluate into "Passing" or "Failing". Add comments describing any failures.)
This file contains 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
// Currently going to latest.civicrm.org/stable.php outputs: | |
4.5.2 | |
// Proposed new output (B) | |
[ | |
{version: "4.4.0"}, | |
{version: "4.4.1"}, | |
{version: "4.4.2", security: true} | |
{version: "4.5.0"}, | |
{version: "4.5.1"}, |
This file contains 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 PSR\Log; | |
/** | |
* Describes a logger instance | |
* | |
* The $message MUST be a string. | |
* The $message MAY contain variable expressions like "%var%" which reference $data['var']. | |
* The "%var%" notation MUST NOT reference values of nested arrays (eg no "%parent.child%" notation). |
This file contains 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 PSR\Log; | |
/** | |
* Describes a logger instance | |
* | |
* The $message MUST be a string. | |
* The $message MAY contain variable expressions like "%var%" which reference $data. | |
* The $message SHOULD NOT include runtime data using plain string concatenation. |