Skip to content

Commit 98aad80

Browse files
Merge pull request #9 from daniel-mueller/master
composer.json was missing a correct license statement
2 parents 95e828f + a7ca65d commit 98aad80

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2017, FLYERALARM Digital GmbH
3+
Copyright (c) 2018, FLYERALARM Digital GmbH
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "flyeralarm/php-code-validator",
33
"description": "A custom coding standard for FLYERALARM",
44
"type": "config",
5-
"license": "proprietary",
5+
"license": "BSD-3-Clause",
66
"authors": [
77
{
88
"name": "Daniel Müller",

custom-standards/Flyeralarm/Sniffs/File/ExceptionMessageSniff.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ public function register()
1818
/**
1919
* @param File $phpcsFile
2020
* @param int $stackPtr
21-
* @return void
21+
* @return int|void
22+
* @throws \PHP_CodeSniffer\Exceptions\RuntimeException
2223
*/
2324
public function process(File $phpcsFile, $stackPtr)
2425
{

custom-standards/Flyeralarm/Sniffs/File/NoClassKindSuffixSniff.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ public function register()
1818
/**
1919
* @param File $phpcsFile
2020
* @param int $stackPtr
21-
* @return void
21+
* @return int|void
22+
* @throws \PHP_CodeSniffer\Exceptions\RuntimeException
2223
*/
2324
public function process(File $phpcsFile, $stackPtr)
2425
{

0 commit comments

Comments
 (0)