Skip to content

Instantly share code, notes, and snippets.

View bouland's full-sized avatar

Simon Bouland bouland

  • Freelance
  • Grenoble
View GitHub Profile
@bouland
bouland / gist:fc2a4f878009101c21be
Created August 26, 2015 07:58
pdepend trait method collision issue
<?php
namespace Just\A\Test;
trait A {
public function tearDown() {
$this->propertyA = null;
}
}
trait B {