Skip to content

Commit 22491b8

Browse files
committed
add author to stuff from #155
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 677d124 commit 22491b8

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

Diff for: src/Core/Serialization/BaseSerializer.php

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929

3030
/**
3131
* @template TNormalizedBom
32+
*
33+
* @author jkowalleck
3234
*/
3335
abstract class BaseSerializer implements Serializer
3436
{

Diff for: src/Core/Serialization/JsonSerializer.php

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
* @template-extends BaseSerializer<TNormalizedBom>
3434
*
3535
* @SuppressWarnings(PHPMD.ConstantNamingConventions)
36+
*
37+
* @author jkowalleck
3638
*/
3739
class JsonSerializer extends BaseSerializer
3840
{

Diff for: src/Core/Serialization/Serializer.php

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
use CycloneDX\Core\Models\Bom;
2727
use Exception;
2828

29+
/**
30+
* @author jkowalleck
31+
*/
2932
interface Serializer
3033
{
3134
/**

Diff for: src/Core/Serialization/XmlSerializer.php

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
* @psalm-type TNormalizedBom=DOMElement
3434
*
3535
* @template-extends BaseSerializer<TNormalizedBom>
36+
*
37+
* @author jkowalleck
3638
*/
3739
class XmlSerializer extends BaseSerializer
3840
{

0 commit comments

Comments
 (0)