Completed
Push — development ( 970bec...00bdcd )
by
unknown
08:13
created

include/classes/coins/coin_scryptn.class.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
$defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1;
3
4
/**
5
 * We extend our CoinBase class
6
 * No need to change anything, base class supports
7
 * scrypt and sha256d
8
 * 
9
 * Note: This is exactly the same as Scrypt, but it's 
10
 * here to let MPOS api report the correct coin algorithm.
11
 **/
12
class Coin extends CoinBase {
0 ignored issues
show
Comprehensibility Best Practice introduced by
The type Coin has been defined more than once; this definition is ignored, only the first definition in include/classes/coins/coin_scrypt.class.php (L9-11) is considered.

This check looks for classes that have been defined more than once.

If you can, we would recommend to use standard object-oriented programming techniques. For example, to avoid multiple types, it might make sense to create a common interface, and then multiple, different implementations for that interface.

This also has the side-effect of providing you with better IDE auto-completion, static analysis and also better OPCode caching from PHP.

Loading history...
13
  protected $target_bits = 16;
14
}
15