To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
- Homebrew
- Mountain Lion -> High Sierra
<?php | |
use \eZ\Publish\API\Repository\Values\Content\Query; | |
$locationService = $this->getRepository()->getLocationService(); | |
$searchService = $this->getRepository()->getSearchService(); | |
$urlAliasService = $this->getRepository()->getUrlAliasService(); | |
$typeService = $this->getRepository()->getContentTypeService(); | |
$identifiers = array( 'folder', 'page', 'contact' ); | |
$ids = array(); |
To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.