added PHP7 scalar type hints, cleanup

This commit is contained in:
smiley
2017-02-10 22:23:29 +01:00
parent 209f7d9a6d
commit f66213f24e
15 changed files with 169 additions and 156 deletions
+1 -1
View File
@@ -33,6 +33,6 @@ interface QRDataInterface{
* @return int
* @throws \chillerlan\QRCode\Data\QRCodeDataException
*/
public function getLengthInBits($type);
public function getLengthInBits(int $type):int;
}