Skip to content

Commit cb2da5f

Browse files
authored
Fix code style (#46)
1 parent 02cf8ec commit cb2da5f

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/Aspose/BarCode/Configuration.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,7 @@ public static function getDefaultConfiguration()
284284

285285
/**
286286
* implements JsonSerializable
287-
*
288-
* @return array object
287+
* @return array
289288
*/
290289
public function jsonSerialize(): array
291290
{

src/Aspose/BarCode/ObjectSerializer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public static function sanitizeForSerialization($data, string $format = null)
5757
*
5858
* @return string the sanitized filename
5959
*/
60-
public static function sanitizeFilename(string $filename): string
60+
public static function sanitizeFilename(string $filename)
6161
{
6262
if (preg_match("/.*[\/\\\\](.*)$/", $filename, $match)) {
6363
return $match[1];
@@ -74,7 +74,7 @@ public static function sanitizeFilename(string $filename): string
7474
*
7575
* @return string the serialized object
7676
*/
77-
public static function toPathValue(string $value): string
77+
public static function toPathValue(string $value)
7878
{
7979
return self::toString($value);
8080
}
@@ -144,7 +144,7 @@ public static function toString($value)
144144
*
145145
* @return string
146146
*/
147-
public static function serializeCollection(array $collection, string $collectionFormat, bool $allowCollectionFormatMulti = false): string
147+
public static function serializeCollection(array $collection, string $collectionFormat, bool $allowCollectionFormatMulti = false)
148148
{
149149
if ($allowCollectionFormatMulti && ('multi' === $collectionFormat)) {
150150
// http_build_query() almost does the job for us. We just

0 commit comments

Comments
 (0)