Skip to content
This repository was archived by the owner on Sep 20, 2021. It is now read-only.

Commit 977b21b

Browse files
committed
Quality: Run devtools:cs.
1 parent 8fe9ebf commit 977b21b

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

Exception.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* New BSD License
1010
*
11-
* Copyright © 2007-2015, Hoa community. All rights reserved.
11+
* Copyright © 2007-2016, Hoa community. All rights reserved.
1212
*
1313
* Redistribution and use in source and binary forms, with or without
1414
* modification, are permitted provided that the following conditions are met:
@@ -43,7 +43,7 @@
4343
*
4444
* Extending the \Hoa\Exception\Exception class.
4545
*
46-
* @copyright Copyright © 2007-2015 Hoa community
46+
* @copyright Copyright © 2007-2016 Hoa community
4747
* @license New BSD License
4848
*/
4949
class Exception extends HoaException

Read.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* New BSD License
1010
*
11-
* Copyright © 2007-2015, Hoa community. All rights reserved.
11+
* Copyright © 2007-2016, Hoa community. All rights reserved.
1212
*
1313
* Redistribution and use in source and binary forms, with or without
1414
* modification, are permitted provided that the following conditions are met:
@@ -43,7 +43,7 @@
4343
*
4444
* Read a string buffer.
4545
*
46-
* @copyright Copyright © 2007-2015 Hoa community
46+
* @copyright Copyright © 2007-2016 Hoa community
4747
* @license New BSD License
4848
*/
4949
class Read extends Stringbuffer implements Stream\IStream\In

ReadWrite.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* New BSD License
1010
*
11-
* Copyright © 2007-2015, Hoa community. All rights reserved.
11+
* Copyright © 2007-2016, Hoa community. All rights reserved.
1212
*
1313
* Redistribution and use in source and binary forms, with or without
1414
* modification, are permitted provided that the following conditions are met:
@@ -43,7 +43,7 @@
4343
*
4444
* Read/write a string buffer.
4545
*
46-
* @copyright Copyright © 2007-2015 Hoa community
46+
* @copyright Copyright © 2007-2016 Hoa community
4747
* @license New BSD License
4848
*/
4949
class ReadWrite
@@ -266,7 +266,7 @@ public function writeFloat($float)
266266
* @param array $array Array.
267267
* @return mixed
268268
*/
269-
public function writeArray(Array $array)
269+
public function writeArray(array $array)
270270
{
271271
$array = var_export($array, true);
272272

Stringbuffer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* New BSD License
1010
*
11-
* Copyright © 2007-2015, Hoa community. All rights reserved.
11+
* Copyright © 2007-2016, Hoa community. All rights reserved.
1212
*
1313
* Redistribution and use in source and binary forms, with or without
1414
* modification, are permitted provided that the following conditions are met:
@@ -45,7 +45,7 @@
4545
*
4646
* This class allows to manipulate a string as a stream.
4747
*
48-
* @copyright Copyright © 2007-2015 Hoa community
48+
* @copyright Copyright © 2007-2016 Hoa community
4949
* @license New BSD License
5050
*/
5151
abstract class Stringbuffer
@@ -238,7 +238,7 @@ public function initializeWith($string)
238238
*
239239
* The `hoa://Library/Stringbuffer` node.
240240
*
241-
* @copyright Copyright © 2007-2015 Hoa community
241+
* @copyright Copyright © 2007-2016 Hoa community
242242
* @license New BSD License
243243
*/
244244
class _Protocol extends Protocol\Node

Write.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* New BSD License
1010
*
11-
* Copyright © 2007-2015, Hoa community. All rights reserved.
11+
* Copyright © 2007-2016, Hoa community. All rights reserved.
1212
*
1313
* Redistribution and use in source and binary forms, with or without
1414
* modification, are permitted provided that the following conditions are met:
@@ -43,7 +43,7 @@
4343
*
4444
* Write into a string buffer.
4545
*
46-
* @copyright Copyright © 2007-2015 Hoa community
46+
* @copyright Copyright © 2007-2016 Hoa community
4747
* @license New BSD License
4848
*/
4949
class Write extends Stringbuffer implements Stream\IStream\Out
@@ -136,7 +136,7 @@ public function writeFloat($float)
136136
* @param array $array Array.
137137
* @return mixed
138138
*/
139-
public function writeArray(Array $array)
139+
public function writeArray(array $array)
140140
{
141141
$array = var_export($array, true);
142142

0 commit comments

Comments
 (0)