Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirko Fenrich committed Feb 17, 2020
1 parent d83b0eb commit 0091fd0
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ composer.phar
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock
.idea
composer.lock
9 changes: 8 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,12 @@
"name": "Mirko Fenrich",
"email": "fenrich@designpark.de"
}
]
],
"require": {
"laminas/laminas-coding-standard": "^1.0"
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}
7 changes: 7 additions & 0 deletions phpcs.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0"?>
<ruleset name="Laminas Coding Standard">
<rule ref="./vendor/laminas/laminas-coding-standard/ruleset.xml"/>

<!-- Paths to check -->
<file>src</file>
</ruleset>
1 change: 0 additions & 1 deletion src/CrudableInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,4 @@ public function update($data);
* @return mixed
*/
public function delete($data);

}
4 changes: 1 addition & 3 deletions src/HalableInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@
/**
* Konvertiert das Objekt in seine HAL-Darstellung
*
* @param int $options
* @param int $options
* @return string
*/
interface HalableInterface
{

public function toHal(\Laminas\Diactoros\Uri $requestUri);
}

?>
4 changes: 2 additions & 2 deletions src/IsNullInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

interface IsNullInterface
{
public function isNull();
}
public function isNull();
}
4 changes: 1 addition & 3 deletions src/JsonableInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@
/**
* Konvertiert das Objekt in seine JSON-Darstellung
*
* @param int $options
* @param int $options
* @return string
*/
interface JsonableInterface
{

public function toJson($options = 0);
}

?>

0 comments on commit 0091fd0

Please sign in to comment.