File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/Profile/Util/Attribute Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
"description" : " Yoti SDK Profile Demo" ,
4
4
"license" : " MIT" ,
5
5
"require" : {
6
- "php" : " ^7.2.5 " ,
6
+ "php" : " ^8.0 " ,
7
7
"fideloper/proxy" : " ^4.2" ,
8
8
"fruitcake/laravel-cors" : " ^1.0" ,
9
9
"guzzlehttp/guzzle" : " ^6.3" ,
Original file line number Diff line number Diff line change 1
- FROM php:7 -fpm-alpine
1
+ FROM php:8 -fpm-alpine
2
2
3
3
COPY php.ini /usr/local/etc/php/conf.d/php.ini
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public static function convertToYotiAttributesList(
28
28
29
29
foreach ($ attributeList ->getAttributes () as $ attr ) { /** @var \Yoti\Protobuf\Attrpubapi\Attribute $attr */
30
30
$ attrName = $ attr ->getName ();
31
- if (null == $ attrName || strlen ($ attrName ) === 0 ) {
31
+ if (null == $ attrName || strlen ($ attrName ) == 0 ) {
32
32
continue ;
33
33
}
34
34
$ yotiAttribute = AttributeConverter::convertToYotiAttribute ($ attr , $ logger );
You can’t perform that action at this time.
0 commit comments