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 | |
/** | |
* Loads all data into the results object (initialisation) | |
* | |
* @param \Elastica\Response $response Response object | |
*/ | |
protected function _init(Response $response) | |
{ | |
$this->_response = $response; |
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 | |
/** | |
* folder relative-folder | |
* folder revision url | |
* folder url | |
* url folder | |
* url revision folder | |
* revision url folder | |
* url@revision folder |
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 | |
function createFoo() | |
{ | |
$pdo = new PDO(/*...*/); | |
$maxTryCount = 3; | |
$tryCount = 0; | |
create_foo_start: | |
try { |
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 ArrayUtils | |
{ | |
/** | |
* Konvertiert einen Array so um, das die Schlüssel als Pfad (punkt notiert) | |
* umgewandelt werden. | |
* | |
* <code> |