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 | |
$errors = function($field) use (&$errors) { | |
$result = array( | |
'errors' => $field->getErrors(), | |
'children' => array() | |
); | |
foreach ($field as $name => $child) { | |
$result['children'][$name] = $errors($child); | |
} |
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
var resolve = require('./url_resolver'); | |
resolve('http://bit.ly/foo', function(e, url) { | |
if(e) { | |
console.log(e); | |
} | |
console.log(url); | |
}); |
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 | |
class Object | |
{ | |
private $data = array(); | |
public function __set($property, $value) | |
{ | |
$this->data[$property] = $value; | |
} |
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 | |
class MyClass | |
{ | |
private $condition1; | |
private $condition2; | |
public function __construct($condition1, $condition2) | |
{ | |
$this->condition1 = $condition1; |
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 | |
require_once __DIR__.'/silex.phar'; | |
use Silex\Application; | |
$app = new Application(); | |
$app->get('/hello', function() { | |
return 'get hello'; |
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 | |
/** | |
* @mongodb:Document( | |
* collection="products", | |
* indexes={ | |
* @mongodb:Index(keys={"sku"=1}, options={"unique"=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 | |
$width = 400; | |
$height = 300; | |
$canvas = imagecreatetruecolor($width, $height); | |
imagefilledrectangle($canvas, 0, 0, $width, $height, imagecolorallocatealpha($canvas, 0, 0, 0, 0)); | |
imagefilledarc($canvas, 200, 150, $width / 2, $height / 2, 45, 135, imagecolorallocatealpha($canvas, 255, 255, 255, 0), IMG_ARC_CHORD /* | IMG_ARC_NOFILL */); |
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 | |
$width = 400; | |
$height = 300; | |
$canvas = imagecreatetruecolor($width, $height); | |
imagecolorallocatealpha($canvas, 0, 0, 0, 0)); | |
imagefilledrectangle($canvas, 0, 0, $width, $height, $color); |
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 | |
class DateTimeField | |
{ | |
public function __construct(DateField $dateWidget = null, TimeField $timeWidget = null, BaseDateTimeTransformer $transformer = null) | |
{ | |
$this->dateWidget = isset($dateWidget) ? $dateWidget : new DateField(); | |
$this->timeWidget = isset($timeWidget) ? $timeWidget : new TimeField(); | |
$this->valueTransformer = isset($transformer) ? $transformer : new DateTimeToArrayTransformer(); | |
} |
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 | |
class DocumentManagerFactory | |
{ | |
private $class; | |
private $options; | |
public function __construct($class, $options) | |
{ | |
$this->class = $class; |