diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 299eab0..049d57a 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -5,12 +5,21 @@ tools: external_code_coverage: timeout: 1000 # PHP - php_code_sniffer: true - php_cpd: true + + # Don't like PSR standards, not going to get messages for them! + php_code_sniffer: false + + php_sim: true + # Can't be used with similarity analyzer + php_cpd: false + php_mess_detector: true php_pdepend: true php_loc: true php_analyzer: config: doc_comment_fixes: - enabled: true \ No newline at end of file + enabled: true + + #HHVM static analysis + php_hhvm: true \ No newline at end of file diff --git a/classes/idriver.php b/classes/idriver.php index 98d6c68..2f0562e 100644 --- a/classes/idriver.php +++ b/classes/idriver.php @@ -83,10 +83,9 @@ interface idriver { /** * Returns the id of the last row inserted into the database * - * @param [string] $name * @return string */ - public function lastInsertId($name = NULL); + public function lastInsertId(); /** * Prepare a statement for execution