Skip to content
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.

Commit

Permalink
Removed an erroneous semi-colon from the machine base class.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbart committed Dec 25, 2012
1 parent a267b16 commit 55a166e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Machine/MachineAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ protected function getBaseUrl()
protected function xmlAttributesToArray($xml)
{
$array = array();
$i= 0;;
$i= 0;
foreach($xml as $node) {
foreach($node->attributes() as $key => $value) {
// For abstraction, everything is casted to string. It is the
Expand Down

0 comments on commit 55a166e

Please sign in to comment.