Passed
Push — develop ( 0377b8...dbdaf9 )
by nguereza
28:32 queued 26:02
created
src/Entity/BaseEntity.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * Class BaseEntity
54 54
  * @package Platine\UserAgent\Entity
55 55
  */
56
-class BaseEntity extends AbstractEntity
57
-{
56
+class BaseEntity extends AbstractEntity {
58 57
     /**
59 58
      * The major version number
60 59
      * @var int
Please login to merge, or discard this patch.
src/Entity/Browser.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,6 +51,5 @@
 block discarded – undo
51 51
  * Class Browser
52 52
  * @package Platine\UserAgent\Entity
53 53
  */
54
-class Browser extends BaseEntity
55
-{
54
+class Browser extends BaseEntity {
56 55
 }
Please login to merge, or discard this patch.
src/Entity/Os.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,6 +51,5 @@
 block discarded – undo
51 51
  * Class Os
52 52
  * @package Platine\UserAgent\Entity
53 53
  */
54
-class Os extends BaseEntity
55
-{
54
+class Os extends BaseEntity {
56 55
 }
Please login to merge, or discard this patch.
src/Entity/Engine.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,6 +51,5 @@
 block discarded – undo
51 51
  * Class Engine
52 52
  * @package Platine\UserAgent\Entity
53 53
  */
54
-class Engine extends BaseEntity
55
-{
54
+class Engine extends BaseEntity {
56 55
 }
Please login to merge, or discard this patch.
src/Detector/CpuDetector.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,14 +53,12 @@
 block discarded – undo
53 53
  * Class CpuDetector
54 54
  * @package Platine\UserAgent\Detector
55 55
  */
56
-class CpuDetector extends AbstractDetector
57
-{
56
+class CpuDetector extends AbstractDetector {
58 57
 
59 58
     /**
60 59
      * {@inheritdoc}
61 60
      */
62
-    public function __construct()
63
-    {
61
+    public function __construct() {
64 62
         parent::__construct();
65 63
 
66 64
         $this->entity = new Cpu();
Please login to merge, or discard this patch.
src/Detector/OsDetector.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,14 +53,12 @@
 block discarded – undo
53 53
  * Class OsDetector
54 54
  * @package Platine\UserAgent\Detector
55 55
  */
56
-class OsDetector extends AbstractDetector
57
-{
56
+class OsDetector extends AbstractDetector {
58 57
 
59 58
     /**
60 59
     * {@inheritdoc}
61 60
     */
62
-    public function __construct()
63
-    {
61
+    public function __construct() {
64 62
         parent::__construct();
65 63
 
66 64
         $this->entity = new Os();
Please login to merge, or discard this patch.
src/Detector/EngineDetector.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,14 +53,12 @@
 block discarded – undo
53 53
  * Class EngineDetector
54 54
  * @package Platine\UserAgent\Detector
55 55
  */
56
-class EngineDetector extends AbstractDetector
57
-{
56
+class EngineDetector extends AbstractDetector {
58 57
 
59 58
     /**
60 59
     * {@inheritdoc}
61 60
     */
62
-    public function __construct()
63
-    {
61
+    public function __construct() {
64 62
         parent::__construct();
65 63
 
66 64
         $this->entity = new Engine();
Please login to merge, or discard this patch.
src/Detector/DeviceDetector.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,14 +53,12 @@
 block discarded – undo
53 53
  * Class DeviceDetector
54 54
  * @package Platine\UserAgent\Detector
55 55
  */
56
-class DeviceDetector extends AbstractDetector
57
-{
56
+class DeviceDetector extends AbstractDetector {
58 57
 
59 58
      /**
60 59
      * {@inheritdoc}
61 60
      */
62
-    public function __construct()
63
-    {
61
+    public function __construct() {
64 62
         parent::__construct();
65 63
 
66 64
         $this->entity = new Device();
Please login to merge, or discard this patch.
src/Detector/BrowserDetector.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,14 +53,12 @@
 block discarded – undo
53 53
  * Class BrowserDetector
54 54
  * @package Platine\UserAgent\Detector
55 55
  */
56
-class BrowserDetector extends AbstractDetector
57
-{
56
+class BrowserDetector extends AbstractDetector {
58 57
 
59 58
     /**
60 59
      * {@inheritdoc}
61 60
      */
62
-    public function __construct()
63
-    {
61
+    public function __construct() {
64 62
         parent::__construct();
65 63
 
66 64
         $this->entity = new Browser();
Please login to merge, or discard this patch.