Subversion Repositories webcounter

Compare Revisions

Ignore whitespace Rev 6 → Rev 7

/trunk/includes/VtsCounterTheme.class.php
2,8 → 2,8
 
/*
* PHP Counter mit Reloadsperre, Textdatenbank und Graphic-Libary (without Error Images)
* (C)Copyright 2010 - 2017 Daniel Marschall
* Revision: 2017-05-05
* (C)Copyright 2010 - 2022 Daniel Marschall
* Revision: 2022-01-09
*/
 
abstract class VtsCounterTheme {
22,7 → 22,7
imagepng($im);
} else if (($format == 'jpg') || ($format == 'jpeg')) {
header('Content-Type: image/jpeg');
imagejpg($im);
imagejpeg($im);
} else if ($format == 'gif') {
header('Content-Type: image/gif');
imagegif($im);
/trunk/includes/functions.inc.php
2,8 → 2,8
 
/*
* PHP Counter mit Reloadsperre, Textdatenbank und Graphic-Libary (without Error Images)
* (C)Copyright 2010 - 2019 Daniel Marschall
* Revision: 2019-02-18
* (C)Copyright 2010 - 2022 Daniel Marschall
* Revision: 2022-01-09
*/
 
function pdox_execute($statement, $args=array()) {
73,6 → 73,7
if ($var_R == $var_Max) $h = $del_B - $del_G;
else if ($var_G == $var_Max) $h = ( 1 / 3 ) + $del_R - $del_B;
else if ($var_B == $var_Max) $h = ( 2 / 3 ) + $del_G - $del_R;
else $h = 0; // should not happen
 
if ($h < 0) $h++;
if ($h > 1) $h--;
/trunk/phpstan.neon.dist
11,7 → 11,9
analyseAndScan:
- .phpstan.tmp
tmpDir: .phpstan.tmp
bootstrapFiles:
- config/config_dist.inc.php
ignoreErrors:
- '#is always (true|false)\.#'
#- '#Call to function assert\(\) with false will always evaluate to false\.#'
#- '#is always (true|false)\.#'
- '#Call to function assert\(\) with false will always evaluate to false\.#'
#- '#with no typehint specified\.#'