Subversion Repositories filter_foundry

Compare Revisions

No changes between revisions

Regard whitespace Rev 464 → Rev 465

/trunk/os_types.php
118,7 → 118,7
$dec = 0;
for ($i=0;$i<4;$i++) $dec = ($dec<<8) + ord($type[$i]);
$hex = "0x".str_pad(dechex($dec), 8, "0", STR_PAD_LEFT);
$dec = str_pad($dec, strlen(hexdec('ffffffff')), " ", STR_PAD_LEFT);
$dec = str_pad((string)$dec, strlen((string)hexdec('ffffffff')), " ", STR_PAD_LEFT);
$desc = str_pad($desc, DESC_WIDTH, " ", STR_PAD_RIGHT);
 
$illegal = false;
159,12 → 159,12
$vdec = 0;
for ($i=0;$i<4;$i++) $vdec = ($vdec<<8) + ord($ven[$i]);
$vhex = "0x".str_pad(dechex($vdec), 8, "0", STR_PAD_LEFT);
$vdec = str_pad($vdec, strlen(hexdec('ffffffff')), " ", STR_PAD_LEFT);
$vdec = str_pad((string)$vdec, strlen((string)hexdec('ffffffff')), " ", STR_PAD_LEFT);
 
$dec = 0;
for ($i=0;$i<4;$i++) $dec = ($dec<<8) + ord($type[$i]);
$hex = "0x".str_pad(dechex($dec), 8, "0", STR_PAD_LEFT);
$dec = str_pad($dec, strlen(hexdec('ffffffff')), " ", STR_PAD_LEFT);
$dec = str_pad((string)$dec, strlen((string)hexdec('ffffffff')), " ", STR_PAD_LEFT);
 
$desc = str_pad($desc, DESC_WIDTH, " ", STR_PAD_RIGHT);
 
/trunk/phpstan.neon.dist
0,0 → 1,15
parameters:
level: 5
fileExtensions:
- php
- phps
paths:
- .
excludePaths:
analyseAndScan:
- .phpstan.tmp
tmpDir: .phpstan.tmp
ignoreErrors:
#- '#is always (true|false)\.#'
#- '#Call to function assert\(\) with false will always evaluate to false\.#'
#- '#with no typehint specified\.#'
/trunk/.
Property changes:
Modified: svn:ignore
y_tab.c
*.8bf
release.zip
+.phpstan.tmp
+phpstan.neon
+