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
2019-08-15T10:42:55.584+0200 [DEBUG] plugin.terraform-provider-openstack_v1.21.1_x4: 2019/08/15 10:42:55 [DEBUG] Waiting for member 829bb988-564c-4e88-bc8b-bff953d5ba86 to become ACTIVE. | |
2019-08-15T10:42:55.584+0200 [DEBUG] plugin.terraform-provider-openstack_v1.21.1_x4: 2019/08/15 10:42:55 [DEBUG] OpenStack Request URL: GET https://network.openstack.cloudvps.com/v2.0/lbaas/listeners/e574e8f3-105a-427e-aad8-591d4f7362e3 | |
2019-08-15T10:42:55.584+0200 [DEBUG] plugin.terraform-provider-openstack_v1.21.1_x4: 2019/08/15 10:42:55 [DEBUG] OpenStack Request Headers: | |
2019-08-15T10:42:55.584+0200 [DEBUG] plugin.terraform-provider-openstack_v1.21.1_x4: Accept: application/json | |
2019-08-15T10:42:55.584+0200 [DEBUG] plugin.terraform-provider-openstack_v1.21.1_x4: User-Agent: Terraform/0.12.2 gophercloud/2.0.0 | |
2019-08-15T10:42:55.584+0200 [DEBUG] plugin.terraform-provider-openstack_v1.21.1_x4: X-Auth-Token: *** | |
2019-08-15T10:42:55.747+0200 [DEBUG] plugin.terraform-provider-openstack_v1.21.1_x4: 2019/08/15 10:42:55 [DEBUG] Op |
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
### Keybase proof | |
I hereby claim: | |
* I am piwi91 on github. | |
* I am piwi91 (https://keybase.io/piwi91) on keybase. | |
* I have a public key whose fingerprint is 84EB 359A 75C3 AC9C FEF9 4D59 93CB F768 190A 780A | |
To claim this, I am signing this object: |
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
Verifying that +piwi91 is my blockchain ID. https://onename.com/piwi91 |
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 | |
namespace AppBundle\EventListener; | |
use Symfony\Component\EventDispatcher\EventSubscriberInterface; | |
use Symfony\Component\HttpKernel\Event\GetResponseEvent; | |
use Symfony\Component\HttpKernel\KernelEvents; | |
class LocaleListener implements EventSubscriberInterface | |
{ | |
private $defaultLocale; | |
public function __construct($defaultLocale = 'en') | |
{ |
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 | |
interface WebserviceInterface | |
{ | |
public function getFoo(); | |
} | |
class Webservice implements WebserviceInterface | |
{ | |
public function getFoo() |
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 | |
namespace Company\Core\Tests; | |
use Doctrine\ORM\Tools\SchemaTool; | |
/** | |
* Test case class helpful with Entity tests requiring the database interaction. | |
* For regular entity tests it's better to extend standard \PHPUnit_Framework_TestCase instead. | |
*/ |
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 | |
class ChartA { | |
public function getData() | |
{ | |
/** @var $array array */ | |
$array = $this->getStuffFromStorage(); | |
// Remove null valuse | |
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 | |
/** | |
* | |
* This file contains a class which can be used to connect with the Exact Online API | |
*/ | |
namespace ExactOnlineApi; | |
use \ExactOnlineApi\ApiException; |