Skip to content

Commit cfdecb7

Browse files
Johannes VogtWorksDev
authored andcommitted
Add missing struct interface to smart link configuration interfaces
fixes #58
1 parent 7e2ac67 commit cfdecb7

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [1.12.1] - 2021-08-16
4+
### Fixed
5+
- Add missing struct interface to smart link configuration interfaces
6+
37
## [1.12.0] - 2021-08-12
48
### Added
59
- Structs to support smart link configurations
@@ -12,7 +16,7 @@
1216
### Added
1317
- Structs to support upcoming workflow methods
1418

15-
## [1.9.0] - 2ß21-06-07
19+
## [1.9.0] - 2021-06-07
1620
### Added
1721
- ContainerType to MailingTemplateConfiguration
1822

src/Struct/SmartLink/SmartLinkConfigurationInterface.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
namespace Scn\EvalancheSoapStruct\Struct\SmartLink;
44

5+
use Scn\EvalancheSoapStruct\Struct\StructInterface;
56

67
/**
78
* Represents a smart link configuration element.
89
*
910
* @package Scn\EvalancheSoapStruct\Struct\SmartlinkLinkConfiguration
1011
*/
11-
interface SmartLinkConfigurationInterface
12+
interface SmartLinkConfigurationInterface extends StructInterface
1213
{
1314
/**
1415
* @return int

src/Struct/SmartLink/SmartLinkPoolConfigurationInterface.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
namespace Scn\EvalancheSoapStruct\Struct\SmartLink;
44

5+
use Scn\EvalancheSoapStruct\Struct\StructInterface;
56

67
/**
78
* Represents a smart link pool configuration element.
89
*
910
* @package Scn\EvalancheSoapStruct\Struct\SmartLink
1011
*/
11-
interface SmartLinkPoolConfigurationInterface
12+
interface SmartLinkPoolConfigurationInterface extends StructInterface
1213
{
1314
/**
1415
* @return int

src/Struct/SmartLink/SmartLinkScoringConfigurationInterface.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
namespace Scn\EvalancheSoapStruct\Struct\SmartLink;
44

5+
use Scn\EvalancheSoapStruct\Struct\StructInterface;
6+
57
/**
68
* Represents a smart link scoring configuration element.
79
*
810
* @package Scn\EvalancheSoapStruct\Struct\SmartLink
911
*/
10-
interface SmartLinkScoringConfigurationInterface
12+
interface SmartLinkScoringConfigurationInterface extends StructInterface
1113
{
1214
/**
1315
* @return int

0 commit comments

Comments
 (0)