GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

IRepositoryCompilerConfiguration
last analyzed

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 23
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
getQueryConfiguration() 0 1 ?
loadCompiledOperationQuery() 0 5 ?
1
<?php
2
3
namespace Pinq\Providers\DSL;
4
5
use Pinq\Expressions as O;
6
use Pinq\Providers\Configuration;
7
use Pinq\Providers\DSL\Compilation\Parameters;
8
use Pinq\Queries;
9
10
/**
11
 * Interface of the repository compiler configuration.
12
 *
13
 * @author Elliot Levin <[email protected]>
14
 */
15
interface IRepositoryCompilerConfiguration extends IQueryCompilerConfiguration
16
{
17
    /**
18
     * @return Configuration\IRepositoryConfiguration
19
     */
20
    public function getQueryConfiguration();
21
22
    /**
23
     * Loads the compiled query from the supplied operation expression and assigns
24
     * the resolved parameters to the $resolvedParameters parameter.
25
     *
26
     * @param O\Expression                       $operationExpression
27
     * @param O\IEvaluationContext|null          $evaluationContext
28
     * @param Queries\IResolvedParameterRegistry $resolvedParameters
29
     *
30
     * @return Compilation\ICompiledOperation
31
     */
32
    public function loadCompiledOperationQuery(
33
            O\Expression $operationExpression,
34
            O\IEvaluationContext $evaluationContext = null,
35
            Queries\IResolvedParameterRegistry &$resolvedParameters = null
36
    );
37
}
38