Skip to content

Commit 28f8a70

Browse files
committed
replaced the last remaining is_integer() call
1 parent 99095aa commit 28f8a70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ private function addTemplatingSection(ArrayNodeDefinition $rootNode)
233233
);
234234

235235
foreach ($urls as $i => $url) {
236-
if (is_integer($i)) {
236+
if (is_int($i)) {
237237
if (0 === strpos($url, 'https://') || 0 === strpos($url, '//')) {
238238
$urls['http'][] = $urls['ssl'][] = $url;
239239
} else {

0 commit comments

Comments
 (0)