Use camel case for all trait attribute names

This commit is contained in:
Gregory Oschwald
2013-05-08 08:12:09 -07:00
parent fc3e67969d
commit 5bebdce6e8
10 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -34,6 +34,6 @@ class Country
{
if ($var != "instance" && isset($this->$var)) return $this->$var;
throw new RuntimeException("Unknown attribute: $attr");
throw new \RuntimeException("Unknown attribute: $attr");
}
}
-3
View File
@@ -5,7 +5,4 @@ namespace GeoIP2\Model;
class Omni extends CityISPOrg
{
public function __construct($raw, $language) {
}
}