MediaWiki  1.33.0
MockSearchResult.php
Go to the documentation of this file.
1 <?php
2 
4  private $isMissingRevision = false;
5  private $isBrokenTitle = false;
6 
7  public function isMissingRevision() {
9  }
12  return $this;
13  }
14 
15  public function isBrokenTitle() {
16  return $this->isBrokenTitle;
17  }
18 
19  public function setBrokenTitle( $isBrokenTitle ) {
21  return $this;
22  }
23 
24  public function getInterwikiPrefix() {
25  return $this->interwikiPrefix;
26  }
27 
28  public function setInterwikiPrefix( $interwikiPrefix ) {
29  $this->interwikiPrefix = $interwikiPrefix;
30  return $this;
31  }
32 }
MockSearchResult\getInterwikiPrefix
getInterwikiPrefix()
Definition: MockSearchResult.php:24
MockSearchResult\setInterwikiPrefix
setInterwikiPrefix( $interwikiPrefix)
Definition: MockSearchResult.php:28
MockSearchResult\$isMissingRevision
$isMissingRevision
Definition: MockSearchResult.php:4
MockSearchResult\isBrokenTitle
isBrokenTitle()
Check if this is result points to an invalid title.
Definition: MockSearchResult.php:15
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
SearchResult
Definition: SearchResult.php:32
MockSearchResult\isMissingRevision
isMissingRevision()
Check if target page is missing, happens when index is out of date.
Definition: MockSearchResult.php:7
MockSearchResult\$isBrokenTitle
$isBrokenTitle
Definition: MockSearchResult.php:5
MockSearchResult
Definition: MockSearchResult.php:3
MockSearchResult\setBrokenTitle
setBrokenTitle( $isBrokenTitle)
Definition: MockSearchResult.php:19
MockSearchResult\setMissingRevision
setMissingRevision( $isMissingRevision)
Definition: MockSearchResult.php:10