31
2
mirror of https://github.com/joomla-extensions/jedchecker.git synced 2024-09-28 21:19:07 +00:00

Merge pull request #30 from demis-palma/fix-3

Fixed parameters and return types
This commit is contained in:
Jaz Parkyn 2016-05-28 17:34:22 +01:00
commit df5de84670
3 changed files with 18 additions and 18 deletions

View File

@ -70,7 +70,7 @@ class JedcheckerRulesFramework extends JEDcheckerRule
/**
* Check if the given resourse is part
*
* @param unknown_type $file The file name to test
* @param string $file The file name to test
*
* @return boolean
*/
@ -95,7 +95,7 @@ class JedcheckerRulesFramework extends JEDcheckerRule
/**
* reads a file and searches for any function defined in the params
*
* @param unknown_type $file The file object
* @param string $file The file name
*
* @return boolean True if the statement was found, otherwise False.
*/
@ -118,9 +118,9 @@ class JedcheckerRulesFramework extends JEDcheckerRule
/**
* runs tests and reports to the appropriate function if strings match.
*
* @param unknown_type $file The file object
* @param unknown_type $content The file content
* @param unknown_type $testObject The test object generated by getTests()
* @param string $file The file name
* @param array $content The file content
* @param object $testObject The test object generated by getTests()
*
* @return boolean
*/

View File

@ -67,7 +67,7 @@ class JedcheckerRulesJamss extends JEDcheckerRule
/**
* reads a file and searches for any function defined in the params
*
* @param unknown_type $file The file object
* @param string $file The file name
*
* @return boolean True if the statement was found, otherwise False.
*/
@ -86,9 +86,9 @@ class JedcheckerRulesJamss extends JEDcheckerRule
* In order to make this easy to update, no syntax changes are applied. Just store the variables in the object
* for faster use.
*
* @param unknown_type $deepscan Join the $jamssDeepSearchStrings
* @param bool $deepscan Merge the $jamssDeepSearchStrings
*
* @return nothing
* @return void
*/
private function init_jamss($deepscan = true)
{
@ -269,7 +269,7 @@ class JedcheckerRulesJamss extends JEDcheckerRule
*
* @param string $path path of the scanned file
*
* @return nothing
* @return bool
*/
private function scan_file($path)
{
@ -391,7 +391,7 @@ class JedcheckerRulesJamss extends JEDcheckerRule
* Calculates the line number where pattern match was found
*
* @param int $offset The offset position of found pattern match
* @param str $file_content The file content in string format
* @param string $file_content The file content in string format
*
* @return int Returns line number where the subject code was found
*/
@ -408,13 +408,13 @@ class JedcheckerRulesJamss extends JEDcheckerRule
* Raise a warning and format it properly.
* jamss warnings are very helpful but very verbose; hence we chose to use of tooltips
*
* @param unknown_type $path The file name
* @param unknown_type $title The comment's title
* @param unknown_type $info The additional info on the error
* @param unknown_type $code The affected portion of the code
* @param unknown_type $line The line number of the first match
* @param string $path The file name
* @param string $title The comment's title
* @param mixed $info The additional info on the error
* @param string $code The affected portion of the code
* @param int $line The line number of the first match
*
* @return unknown_type Returns nothing
* @return void Returns nothing
*/
private function jamssWarning($path, $title, $info, $code, $line)
{

View File

@ -99,7 +99,7 @@ class JEDcheckerRule extends JObject
/**
* Attempts to load a .ini param file of this rule.
*
* @return JRegistry
* @return Joomla\Registry\Registry
*/
protected function loadParams()
{
@ -107,7 +107,7 @@ class JEDcheckerRule extends JObject
$file_name = str_replace('jedcheckerrules', '', strtolower(get_class($this)));
$params_file = JPATH_COMPONENT_ADMINISTRATOR . '/libraries/rules/' . $file_name . '.ini';
$params = JRegistry::getInstance('jedchecker.rule.' . $file_name);
$params = Joomla\Registry\Registry::getInstance('jedchecker.rule.' . $file_name);
// Load the params from the ini file
if (file_exists($params_file))