29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-05-29 08:21:38 +00:00
cms/tests/Codeception/_support/Page/Acceptance/Administrator/MenuListPage.php
Allon Moritz 967d6552fd
[4.2] Convert tests to PSR-12 (#38161)
* Convert tests to psr 12 where possible

* fix rules

* revert ignore
2022-06-28 09:43:33 +02:00

38 lines
773 B
PHP

<?php
/**
* @package Joomla.Tests
* @subpackage AcceptanceTester.Page
*
* @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Page\Acceptance\Administrator;
/**
* Acceptance Page object class to menu list page.
*
* @package Page\Acceptance\Administrator
*
* @since 4.0.0
*/
class MenuListPage extends AdminListPage
{
/**
* Url to menu page.
*
* @var string
* @since 4.0.0
*/
public static $url = "administrator/index.php?option=com_menus&view=menus";
/**
* Page title of the menu page.
*
* @var string
* @since 4.0.0
*/
public static $pageTitleText = 'Menus';
}