Skip to content

Instantly share code, notes, and snippets.

View alexhouse's full-sized avatar

Alex alexhouse

  • Newcastle upon Tyne, UK
View GitHub Profile

Keybase proof

I hereby claim:

  • I am alexhouse on github.
  • I am alexhouse (https://keybase.io/alexhouse) on keybase.
  • I have a public key ASBURHPy0po4Yc1UP3lX8go97cG4NQYuKaEiPIzya8XlZQo

To claim this, I am signing this object:

@alexhouse
alexhouse / BraceTest.php
Created February 13, 2014 15:55
XDebug issue with code coverage; PHP 5.4.25, XDebug 2.2.3, PHPUnit 3.7.31
<?php
require_once 'Model.php';
class BraceTest extends PHPUnit_Framework_TestCase {
public function testBraces()
{
$params = array(1, 2, 3);
Model::load_something($params);
}
}