Skip to content

Commit

Permalink
added new lines to files
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjgreen committed Sep 27, 2015
1 parent 629976f commit 153da10
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
vendor
composer.lock
composer.lock
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
</exclude>
</whitelist>
</filter>
</phpunit>
</phpunit>
2 changes: 1 addition & 1 deletion src/ColumnConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ public function getIntersection(array $columns, array $merge = array())
private function array_iunique($array) {
return array_values(array_intersect_key($array, array_unique(array_map("strtolower",$array))));
}
}
}
2 changes: 1 addition & 1 deletion src/Command/Questioner.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ public function secret($question, $default = null)

return $this->questionHelper->ask($this->input, $this->output, $question);
}
}
}
2 changes: 1 addition & 1 deletion src/Hash/CrcHash.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ public function getHashSelect($columnsString)
{
return $this->getMultiByteHash($columnsString, self::CRC_SQL_FUNCTION, self::CRC_BYTE_SIZE);
}
}
}
2 changes: 1 addition & 1 deletion src/Hash/HashAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ protected function getMultiByteHash($columnsString, $hash, $byteSize)

return "CONCAT(" . implode(',', $str) . ")";
}
}
}
2 changes: 1 addition & 1 deletion src/Hash/HashInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
interface HashInterface {

public function getHashSelect($columnsString);
}
}
2 changes: 1 addition & 1 deletion src/Hash/Md5Hash.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ public function getHashSelect($columnsString)
{
return $this->getMultiByteHash($columnsString, self::MD5_SQL_FUNCTION, self::MD5_BYTE_SIZE);
}
}
}
2 changes: 1 addition & 1 deletion src/Hash/ShaHash.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ public function getHashSelect($columnsString)
{
return $this->getMultiByteHash($columnsString, self::SHA1_SQL_FUNCTION, self::SHA1_BYTE_SIZE);
}
}
}
2 changes: 1 addition & 1 deletion src/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -356,4 +356,4 @@ public function __toString()
{
return $this->getQualifiedName();
}
}
}
2 changes: 1 addition & 1 deletion src/Transfer/Transfer.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ private function validatePower2Int($value)
throw new \InvalidArgumentException("Argument must be a positive, power of 2 integer. '$value' given.");
}
}
}
}
2 changes: 1 addition & 1 deletion src/Transfer/TransferInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ public function setBlockSize($blockSize);
* @param int $transferSize
*/
public function setTransferSize($transferSize);
}
}
2 changes: 1 addition & 1 deletion src/WhereClause.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ public function getBindings()
{
return $this->bindings;
}
}
}

0 comments on commit 153da10

Please sign in to comment.