Skip to content

Commit

Permalink
Remove double newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
jenssegers committed Feb 26, 2015
1 parent fbb224d commit cac90b4
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/Agent.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ class Agent extends Mobile_Detect {
'Linux' => 'Linux',
);


/**
* List of additional browsers.
*
Expand Down Expand Up @@ -72,7 +71,6 @@ class Agent extends Mobile_Detect {
'Lycos' => 'lycos',
);


/**
* Get all detection rules. These rules include the additional
* platforms and browsers.
Expand All @@ -99,7 +97,6 @@ public function getDetectionRulesExtended()
return $rules;
}


/**
* Retrieve the current set of rules.
*
Expand All @@ -117,7 +114,6 @@ public function getRules()
}
}


/**
* Get accept languages.
*
Expand All @@ -138,7 +134,6 @@ public function languages($acceptLanguage = null)
return array();
}


/**
* Match a detection rule and return the matched key.
*
Expand All @@ -160,7 +155,6 @@ protected function findDetectionRulesAgainstUA(array $rules, $userAgent = null)
return false;
}


/**
* Get the browser name.
*
Expand All @@ -179,7 +173,6 @@ public function browser($userAgent = null)
return $this->findDetectionRulesAgainstUA($rules, $userAgent);
}


/**
* Get the platform name.
*
Expand All @@ -197,7 +190,6 @@ public function platform($userAgent = null)
return $this->findDetectionRulesAgainstUA($rules, $userAgent);
}


/**
* Get the device name.
*
Expand All @@ -216,7 +208,6 @@ public function device($userAgent = null)
return $this->findDetectionRulesAgainstUA($rules, $userAgent);
}


/**
* Check if the device is a desktop computer.
*
Expand Down

0 comments on commit cac90b4

Please sign in to comment.