Skip to content
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Knipper committed Sep 16, 2017
1 parent eab631c commit 3264183
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/FritzboxAHA.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
declare(strict_types = 1);
declare(strict_types=1);

namespace JanKnipper\FritzboxAHA;

Expand Down Expand Up @@ -31,9 +31,9 @@ class FritzboxAHA
public function __construct(
CurlInterface $curl = null
) {
if ($curl === null) {
$curl = new Curl;
}
if ($curl === null) {
$curl = new Curl;
}

$this->curl = $curl;
}
Expand Down Expand Up @@ -312,7 +312,7 @@ public function getAllDevices()
foreach ($devices->device as $device) {
$ret[] = [
"name" => (string)$device->name,
"aid" => (string)$device["identifier"],
"aid" => (string)$device["identifier"],
"type" => (string)$device["functionbitmask"],
];
}
Expand Down

0 comments on commit 3264183

Please sign in to comment.