Skip to content

Commit

Permalink
Removed comments that kept causing problems with styleci
Browse files Browse the repository at this point in the history
  • Loading branch information
nozavroni committed Dec 12, 2016
1 parent 8063996 commit 23adde1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions src/CSVelte/Collection/AbstractCollection.php
Expand Up @@ -112,7 +112,7 @@ public function __toString()
return $this->join();
}

/** BEGIN ArrayAccess methods */
// BEGIN ArrayAccess methods

/**
* Whether a offset exists.
Expand Down Expand Up @@ -167,17 +167,18 @@ public function offsetUnset($offset)
$this->delete($offset);
}

/** END ArrayAccess methods */
// END ArrayAccess methods

// BEGIN Countable methods

/** BEGIN Countable methods */
public function count()
{
return count($this->data);
}

/** END Countable methods */
// END Countable methods

/** BEGIN Iterator methods */
// BEGIN Iterator methods

/**
* Return the current element.
Expand Down
6 changes: 3 additions & 3 deletions src/CSVelte/Table/AbstractRow.php
Expand Up @@ -97,7 +97,7 @@ public function toArray()
return $this->fields->toArray();
}

/** Begin SPL Countable Interface Method **/
// Begin SPL Countable Interface Method

/**
* Count fields within the row.
Expand All @@ -109,7 +109,7 @@ public function count()
return count($this->fields);
}

/** Begin SPL Iterator Interface Methods **/
// Begin SPL Iterator Interface Methods

/**
* Get the current column's data object.
Expand Down Expand Up @@ -171,7 +171,7 @@ public function valid()
return $this->fields->hasPosition($this->position);
}

/** Begin SPL ArrayAccess Methods **/
// Begin SPL ArrayAccess Methods

/**
* Is there an offset at specified position.
Expand Down

0 comments on commit 23adde1

Please sign in to comment.