I hereby claim:
- I am localheinz on github.
- I am localheinz (https://keybase.io/localheinz) on keybase.
- I have a public key ASDTAW1l_75Ox6sSn-zaqbAzJdM34x_z9HObGxv7w7cm1Ao
To claim this, I am signing this object:
<?php | |
// module/MyNamespace/Module.php | |
namespace MyNamespace; | |
use Zend\ModuleManager\Feature\ConfigProviderInterface; | |
use Zend\ModuleManager\Feature\ServiceProviderInterface; | |
use Zend\ServiceManager\ServiceManager; |
<?php | |
/** | |
* Please be aware that __($messageId) is just as function that returns $messageId - it is used for gettext to pick up | |
* message ids. | |
*/ | |
$this->inputFilter | |
->add(array( | |
'name' => 'firstname', | |
'validators' => array( |
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" href="/asset/css/styles.less"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<div class="span4"> |
#!/usr/bin/env php | |
<?php | |
$changes = []; | |
exec( | |
'git diff --cached --name-status --diff-filter=ACM', | |
$changes | |
); |
### Keybase proof | |
I hereby claim: | |
* I am localheinz on github. | |
* I am localheinz (https://keybase.io/localheinz) on keybase. | |
* I have a public key whose fingerprint is 988E 9FE9 A7F1 3DD6 9FD2 9F0F 3A04 5C98 08E7 46DD | |
To claim this, I am signing this object: |
<?php | |
namespace Foo; | |
class BarTest extends PHPUnit_Framework_TestCase | |
{ | |
protected function setUp() | |
{ | |
if (null === $this->providerBaz()) { |
I hereby claim:
To claim this, I am signing this object:
<?php | |
declare(strict_types=1); | |
final class Meagrams | |
{ | |
/** | |
* @var string[] | |
*/ | |
private $words; |
<?php | |
declare(strict_types=1); | |
final class FullDeck | |
{ | |
public function cards(): array | |
{ | |
static $cards; |