Skip to content

Commit c9970c3

Browse files
authored
Fix(CI): rector (#544)
1 parent f2488b8 commit c9970c3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

inc/reference_supplier.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function getFromDBByReference($plugin_order_references_id)
6868
];
6969
$result = $DB->request($criteria);
7070

71-
if (count($result) != 1) {
71+
if (count($result) !== 1) {
7272
return false;
7373
}
7474

inc/surveysupplier.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function getFromDBByOrder($plugin_order_orders_id)
6868
];
6969

7070
$iterator = $DB->request($criteria);
71-
if (count($iterator) != 1) {
71+
if (count($iterator) !== 1) {
7272
return false;
7373
}
7474

0 commit comments

Comments
 (0)