Skip to content

Commit

Permalink
properly rename controll to control
Browse files Browse the repository at this point in the history
  • Loading branch information
paresy authored Jun 25, 2024
1 parent 658f003 commit 381b95f
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion SceneControll/README.md → SceneControl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

[Link zur deutschen Dokumentation](https://www.symcon.de/de/service/dokumentation/modulreferenz/szenensteuerung/)

[Link to the english documentation](https://www.symcon.de/en/service/documentation/module-reference/scenecontroll/)
[Link to the english documentation](https://www.symcon.de/en/service/documentation/module-reference/scene-control/)
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions SceneControll/locale.json → SceneControl/locale.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"Active Scene": "Aktive Szene",
"Unknown": "Unbekannt",
"'%s' is called": "'%s' wird aufgerufen",
"SceneControll": "SzenenSteuerung",
"https://www.symcon.de/en/service/documentation/module-reference/scenecontroll/": "https://www.symcon.de/de/service/dokumentation/modulreferenz/szenensteuerung/"
"Scene Control": "Szenensteuerung",
"https://www.symcon.de/en/service/documentation/module-reference/scene-control/": "https://www.symcon.de/de/service/dokumentation/modulreferenz/szenensteuerung/"
}
}
}
6 changes: 3 additions & 3 deletions SceneControll/module.json → SceneControl/module.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"id": "{87F46796-CC43-442D-94FD-AAA0BD8D9F54}",
"name": "SceneControll",
"name": "SceneControl",
"type": 3,
"vendor": "",
"aliases": [
"SceneControll"
"Scene Control"
],
"parentRequirements": [],
"childRequirements": [],
"implemented": [],
"prefix": "SZS",
"url": "https://www.symcon.de/en/service/documentation/module-reference/scenecontroll/"
"url": "https://www.symcon.de/en/service/documentation/module-reference/scenecontrol/"
}
2 changes: 1 addition & 1 deletion SceneControll/module.php → SceneControl/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);
include_once __DIR__ . '/attributes.php';
class SceneControll extends IPSModule
class SceneControl extends IPSModule
{
use Attributes;
public function Create()
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "{4414D465-0A32-49AC-929A-D948CBCDE06E}",
"author": "Symcon GmbH",
"name": "SceneControll",
"name": "SceneControl",
"url": "https://www.symcon.de",
"compatibility": {
"version": "5.0"
Expand Down
4 changes: 2 additions & 2 deletions tests/SzenenSteuerungValidationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ public function testValidateSzenenSteuerung(): void
{
$this->validateLibrary(__DIR__ . '/..');
}
public function testValidateSceneControllModule(): void
public function testValidateSceneControlModule(): void
{
$this->validateModule(__DIR__ . '/../SceneControll');
$this->validateModule(__DIR__ . '/../SceneControl');
}
}
2 changes: 1 addition & 1 deletion tests/phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</php>
<source>
<include>
<directory suffix=".php">../SceneControll</directory>
<directory suffix=".php">../SceneControl</directory>
</include>
</source>
</phpunit>

0 comments on commit 381b95f

Please sign in to comment.