File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed
Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1414 <testsuites >
1515 <testsuite name =" GraphQLite Test Suite" >
1616 <directory >./tests/</directory >
17+ <exclude >./tests/dependencies/</exclude >
1718 </testsuite >
1819 </testsuites >
1920
Original file line number Diff line number Diff line change 1+ <?php
2+
3+
4+ namespace TheCodingMachine \GraphQLite \Fixtures ;
5+
6+ use TheCodingMachine \GraphQLite \Annotations \Query ;
7+
8+ // An abstract class to test that the GlobControllerQueryProvider does not try anything with it.
9+ abstract class AbstractTestController
10+ {
11+ /**
12+ * @Query()
13+ */
14+ public function test (): string
15+ {
16+ return 'foo ' ;
17+ }
18+ }
Original file line number Diff line number Diff line change 1+ <?php
2+ // Used to check that the GlobControllerQueryProvider can manage empty classes
You can’t perform that action at this time.
0 commit comments