File tree 6 files changed +46
-9
lines changed
features/demo_app/src/Method
6 files changed +46
-9
lines changed Original file line number Diff line number Diff line change 6
6
- ' 7.2'
7
7
8
8
env :
9
- CI : ' true'
10
- TEST_OUTPUT_STYLE : ' pretty'
11
- PHPCS_REPORT_STYLE : ' full'
12
- COMPOSER_OPTIONS : ' --optimize-autoloader'
9
+ global :
10
+ CI : ' true'
11
+ TEST_OUTPUT_STYLE : ' pretty'
12
+ PHPCS_REPORT_STYLE : ' full'
13
+ COMPOSER_OPTIONS : ' --optimize-autoloader'
14
+ matrix :
15
+ - SDK_VERSION : ' ~1.2'
16
+ - SDK_VERSION : ' ~2.0'
13
17
14
18
sudo : false
15
19
16
20
matrix :
17
21
fast_finish : true
18
22
23
+ before_install :
24
+ # remove xdebug to speed up build
25
+ - phpenv config-rm xdebug.ini
26
+
19
27
install :
28
+ - composer require yoanm/jsonrpc-server-sdk:$SDK_VERSION
20
29
- make build
21
30
script :
22
31
- make test-technical
Original file line number Diff line number Diff line change 27
27
},
28
28
"require" : {
29
29
"php" : " >7.0" ,
30
- "yoanm/jsonrpc-server-sdk" : " ^ 1.2" ,
30
+ "yoanm/jsonrpc-server-sdk" : " ~ 1.2 || ~2.0 " ,
31
31
"symfony/http-foundation" : " ^3.0 || ^4.0" ,
32
32
"symfony/dependency-injection" : " ^3.0 || ^4.0" ,
33
33
"yoanm/jsonrpc-server-sdk-psr11-resolver" : " ^2.0"
Original file line number Diff line number Diff line change 5
5
6
6
class MethodA implements JsonRpcMethodInterface
7
7
{
8
- public function validateParams (array $ paramList )
8
+ /**
9
+ * {@inheritdoc}
10
+ */
11
+ public function validateParams (array $ paramList ) : array
9
12
{
13
+ return [];
10
14
}
11
15
16
+ /**
17
+ * {@inheritdoc}
18
+ */
12
19
public function apply (array $ paramList = null )
13
20
{
14
21
return 'MethodA ' ;
Original file line number Diff line number Diff line change 5
5
6
6
class MethodB implements JsonRpcMethodInterface
7
7
{
8
- public function validateParams (array $ paramList )
8
+ /**
9
+ * {@inheritdoc}
10
+ */
11
+ public function validateParams (array $ paramList ) : array
9
12
{
13
+ return [];
10
14
}
11
15
16
+ /**
17
+ * {@inheritdoc}
18
+ */
12
19
public function apply (array $ paramList = null )
13
20
{
14
21
return 'MethodB ' ;
Original file line number Diff line number Diff line change 5
5
6
6
class MethodC implements JsonRpcMethodInterface
7
7
{
8
- public function validateParams (array $ paramList )
8
+ /**
9
+ * {@inheritdoc}
10
+ */
11
+ public function validateParams (array $ paramList ) : array
9
12
{
13
+ return [];
10
14
}
11
15
16
+ /**
17
+ * {@inheritdoc}
18
+ */
12
19
public function apply (array $ paramList = null )
13
20
{
14
21
return 'MethodC ' ;
Original file line number Diff line number Diff line change 5
5
6
6
class MethodD implements JsonRpcMethodInterface
7
7
{
8
- public function validateParams (array $ paramList )
8
+ /**
9
+ * {@inheritdoc}
10
+ */
11
+ public function validateParams (array $ paramList ) : array
9
12
{
13
+ return [];
10
14
}
11
15
16
+ /**
17
+ * {@inheritdoc}
18
+ */
12
19
public function apply (array $ paramList = null )
13
20
{
14
21
return 'MethodD ' ;
You can’t perform that action at this time.
0 commit comments