Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
IdentifierResolver.php
Go to the documentation of this file.
1 <?php
7 
9 
14 {
18  private $request;
19 
23  public function __construct(
24  RequestInterface $request
25  ) {
26  $this->request = $request;
27  }
28 
32  public function execute()
33  {
34  return $this->request->getParam('uuid');
35  }
36 }