From 56cb116ce6cc5dd027a247fa4f2ba1bb54b4e0f3 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Wed, 24 Aug 2016 20:31:02 +0200 Subject: [PATCH] [Bridge] Format unreadable lines longer than 80 chars --- lib/Bridge.php | 43 ++++++++++++++++++++++++++++++++++--------- 1 file changed, 34 insertions(+), 9 deletions(-) diff --git a/lib/Bridge.php b/lib/Bridge.php index e117d6a4..0dfe8f91 100644 --- a/lib/Bridge.php +++ b/lib/Bridge.php @@ -42,7 +42,8 @@ abstract class BridgeAbstract implements BridgeInterface { /** * Defined datas with parameters depending choose bridge * Note : you can define a cache with "setCache" - * @param array $param $_REQUEST, $_GET, $_POST, or array with bridge expected paramters + * @param array $param $_REQUEST, $_GET, $_POST, or array with expected + * bridge paramters */ public function setDatas(array $param){ if(!is_null($this->cache)){ @@ -87,15 +88,19 @@ abstract class BridgeAbstract implements BridgeInterface { $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 3); $calling = $backtrace[2]; $message = $calling['file'] . ':' - . $calling['line'] . ' class ' - . get_class($this) . '->' - . $calling['function'] . ' - ' - . $text; + . $calling['line'] . ' class ' + . get_class($this) . '->' + . $calling['function'] . ' - ' + . $text; error_log($message); } - protected function getContents($url, $use_include_path = false, $context = null, $offset = 0, $maxlen = null){ + protected function getContents($url + , $use_include_path = false + , $context = null + , $offset = 0 + , $maxlen = null){ $contextOptions = array( 'http' => array( 'user_agent' => ini_get('user_agent') @@ -128,9 +133,25 @@ abstract class BridgeAbstract implements BridgeInterface { return $content; } - protected function getSimpleHTMLDOM($url, $use_include_path = false, $context = null, $offset = 0, $maxLen = null, $lowercase = true, $forceTagsClosed = true, $target_charset = DEFAULT_TARGET_CHARSET, $stripRN = true, $defaultBRText = DEFAULT_BR_TEXT, $defaultSpanText = DEFAULT_SPAN_TEXT){ + protected function getSimpleHTMLDOM($url + , $use_include_path = false + , $context = null + , $offset = 0 + , $maxLen = null + , $lowercase = true + , $forceTagsClosed = true + , $target_charset = DEFAULT_TARGET_CHARSET + , $stripRN = true + , $defaultBRText = DEFAULT_BR_TEXT + , $defaultSpanText = DEFAULT_SPAN_TEXT){ $content = $this->getContents($url, $use_include_path, $context, $offset, $maxLen); - return str_get_html($content, $lowercase, $forceTagsClosed, $target_charset, $stripRN, $defaultBRText, $defaultSpanText); + return str_get_html($content + , $lowercase + , $forceTagsClosed + , $target_charset + , $stripRN + , $defaultBRText + , $defaultSpanText); } } @@ -242,7 +263,11 @@ class Bridge { */ static public function create($nameBridge){ if(!preg_match('@^[A-Z][a-zA-Z0-9-]*$@', $nameBridge)){ - throw new \InvalidArgumentException('Name bridge must be at least one uppercase follow or not by alphanumeric or dash characters.'); + $message = <<