Dependency "watchr":
sudo gem install watchr
On Macs:
sudo gem install growl
Uses notify-send on other systems than Mac.
| <?php | |
| use Buzz\Browser; | |
| use Buzz\Client\Curl; | |
| require_once __DIR__ . '/vendor/autoload.php'; | |
| $statusPageApiKey = ""; | |
| $statusPageId = ""; | |
| $nextUrl = 'https://status.tideways.io/api/v1/incidents'; // Cachet API endpoint |
| <?php | |
| namespace Shopware\Production\Messenger; | |
| use Symfony\Component\Messenger\Envelope; | |
| use Symfony\Component\Messenger\Exception\HandlerFailedException; | |
| use Symfony\Component\Messenger\Middleware\MiddlewareInterface; | |
| use Symfony\Component\Messenger\Middleware\StackInterface; | |
| use Shopware\Core\Framework\MessageQueue\ScheduledTask; |
| license: gpl-3.0 |
| diff --git a/src/Framework/TestSuite.php b/src/Framework/TestSuite.php | |
| index 1b3b339..71ee4a9 100644 | |
| --- a/src/Framework/TestSuite.php | |
| +++ b/src/Framework/TestSuite.php | |
| @@ -878,7 +878,11 @@ public static function isTestMethod(ReflectionMethod $method) | |
| // @scenario on TestCase::testMethod() | |
| // @test on TestCase::testMethod() | |
| - $doc_comment = $method->getDocComment(); | |
| + $doc_comment = (string)$method->getDocComment(); |
| $products = array(); | |
| foreach($arr['accounts'] as $val) { | |
| $account_id = $val['account_id']; | |
| $ch = curl_init(); | |
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
| curl_setopt($ch, CURLOPT_URL, 'https://api.appannie.com/v1.2/accounts/'.$account_id.'/sales?break_down=product&start_date=2015-01-01&end_date=2015-01-31'); |
| <?php | |
| $options = array( | |
| 'argument_functions' => array( | |
| 'file_get_contents', | |
| 'curl_exec', | |
| 'fgets', | |
| 'fputs', | |
| 'fread', | |
| 'fgetcsv', |
Dependency "watchr":
sudo gem install watchr
On Macs:
sudo gem install growl
Uses notify-send on other systems than Mac.
| <?php | |
| function datemanip(DateTime $dt) | |
| { | |
| return $dt->modify("+2 day"); | |
| } | |
| $dt = new DateTime(); | |
| $dti = new DateTimeImmutable(); |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| <?php | |
| class TailRecursion | |
| { | |
| public $func; | |
| public $acc; | |
| public $recursing; | |
| public function tail() | |
| { | |
| return call_user_func_array($this->func, func_get_args()); |