1
0
mirror of https://github.com/danog/PrimeModule.git synced 2024-11-26 20:34:37 +01:00

Apply fixes from StyleCI

This commit is contained in:
Daniil Gentili 2017-12-22 11:06:46 +00:00 committed by StyleCI Bot
parent a1edd96169
commit ff9fc2d55f
4 changed files with 4 additions and 2 deletions

View File

@ -191,6 +191,7 @@ class PrimeModule
if (!extension_loaded('primemodule')) {
return false;
}
try {
return factorize($what);
} catch (\Exception $e) {

View File

@ -69,7 +69,7 @@ class Struct
* calcsize.
*
* Return the size of the struct (and hence of the string) corresponding to the given format.
*
*
* @param $format Format string
*

View File

@ -79,7 +79,7 @@ class StructClass
* calcsize.
*
* Return the size of the struct (and hence of the string) corresponding to the given format.
*
*
* @param $format Format string
*

View File

@ -235,6 +235,7 @@ class StructTools
if (error_reporting() === 0) {
return true; // return true to continue through the others error handlers
}
throw new StructException($errstr.' on line '.$errline, $errno);
}