Completed
Push — master ( 14d2bd...06e609 )
by mw
81:37 queued 59:24
created

includes/Aliases.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
0 ignored issues
show
Coding Style Compatibility introduced by
For compatibility and reusability of your code, PSR1 recommends that a file should introduce either new symbols (like classes, functions, etc.) or have side-effects (like outputting something, or including other files), but not both at the same time. The first symbol is defined on line 17 and the first side effect is on line 15.

The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.

The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.

To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.

Loading history...
2
3
/**
4
 * Indicate class aliases in a way PHPStorm and Eclipse understand.
5
 * This is purely an IDE helper file, and is not loaded by the extension.
6
 *
7
 * @since 1.9
8
 *
9
 * @ingroup SMW
10
 *
11
 * @licence GNU GPL v2+
12
 * @author Jeroen De Dauw < [email protected] >
13
 */
14
15
throw new Exception( 'Not an actual source file' );
16
17
class SMWDataItemException extends SMW\DataItemException {
18
}
19
20
abstract class SMWStore extends SMW\Store {
21
}
22
23
class SMWSemanticData extends SMW\SemanticData {
24
}
25
26
class SMWDIWikiPage extends SMW\DIWikiPage {
27
}
28
29
class SMWDIConcept extends SMW\DIConcept {
30
}
31
32
class SMWDIProperty extends SMW\DIProperty {
33
}
34
35
class SMWDISerializer extends SMW\Serializers\QueryResultSerializer {
36
}
37
38
class SMWUpdateJob extends SMW\UpdateJob {
39
}
40
41
class SMWRefreshJob extends SMW\RefreshJob {
42
}
43
44
abstract class SMWResultPrinter extends SMW\ResultPrinter {
45
}
46
47
class SMWCategoryResultPrinter extends SMW\CategoryResultPrinter {
48
}
49
50
class SMWDSVResultPrinter extends SMW\DsvResultPrinter {
51
}
52
53
class SMWEmbeddedResultPrinter extends SMW\EmbeddedResultPrinter {
54
}
55
56
class SMWRDFResultPrinter extends SMW\RdfResultPrinter {
57
}
58
59
class SMWListResultPrinter extends SMW\ListResultPrinter {
60
}
61
62
interface SMWIResultPrinter extends SMW\QueryResultPrinter {
63
}
64
65
class SMWSparqlDatabase4Store extends SMW\SPARQLStore\FourstoreHttpDatabaseConnector {
66
}
67
68
class SMWSparqlDatabaseVirtuoso extends SMW\SPARQLStore\VirtuosoHttpDatabaseConnector {
69
}
70
71
class SMWSparqlStore extends SMW\SPARQLStore\SPARQLStore {
72
}
73
74
class SMWSparqlDatabase extends SMW\SPARQLStore\GenericHttpDatabaseConnector {
75
}
76