HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/brameda.komma.pro/vendor/laravel/dusk/src/Component.php
<?php

namespace Laravel\Dusk;

abstract class Component
{
    /**
     * Get the root selector associated with this component.
     *
     * @return string
     */
    abstract public function selector();

    /**
     * Assert that the current page contains this component.
     *
     * @param  \Laravel\Dusk\Browser  $browser
     * @return void
     */
    public function assert(Browser $browser)
    {
        //
    }

    /**
     * Get the element shortcuts for the page.
     *
     * @return array
     */
    public function elements()
    {
        return [];
    }

    /**
     * Allow this class to be used in place of a selector string.
     *
     * @return string
     */
    public function __toString()
    {
        return '';
    }
}