Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace Illuminate\Tests\Filesystem; use PHPUnit\Framework\Attributes\DataProvid..

Decoded Output download

<?php

namespace Illuminate\Tests\Filesystem;

use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\RequiresOperatingSystem;
use PHPUnit\Framework\TestCase;

use function Illuminate\Filesystem\join_paths;

class JoinPathsHelperTest extends TestCase
{
    #[RequiresOperatingSystem('Linux|DAR')]
    #[DataProvider('unixDataProvider')]
    public function testItCanMergePathsForUnix(string $expected, string $given)
    {
        $this->assertSame($expected, $given);
    }

    public static function unixDataProvider()
    {
        yield ['very/Basic/Functionality.php', join_paths('very', 'Basic', 'Functionality.php')];
        yield ['segments/get/ltrimed/by_directory/separator.php', join_paths('segments', '/get/ltrimed', '/by_directory/separator.php')];
        yield ['only/\os_separator\/\get_ltrimmed.php', join_paths('only', '\os_separator\', '\get_ltrimmed.php')];
        yield ['/base_path//does_not/get_trimmed.php', join_paths('/base_path/', '/does_not', '/get_trimmed.php')];
        yield ['Empty/0/1/Segments/00/Get_removed.php', join_paths('Empty', '', '0', null, 0, false, [], '1', 'Segments', '00', 'Get_removed.php')];
        yield ['', join_paths(null, null, '')];
        yield ['1/2/3', join_paths(1, 0, 2, 3)];
        yield ['app/objecty', join_paths('app', new class()
        {
            public function __toString()
            {
                return 'objecty';
            }
        })];
        yield ['app/0', join_paths('app', new class()
        {
            public function __toString()
            {
                return '0';
            }
        })];
    }

    #[RequiresOperatingSystem('Windows')]
    #[DataProvider('windowsDataProvider')]
    public function testItCanMergePathsForWindows(string $expected, string $given)
    {
        $this->assertSame($expected, $given);
    }

    public static function windowsDataProvider()
    {
        yield ['app\Basic\Functionality.php', join_paths('app', 'Basic', 'Functionality.php')];
        yield ['segments\get\ltrimedy_directory\separator.php', join_paths('segments', '\get\ltrimed', 'y_directory\separator.php')];
        yield ['only\/os_separator/\/get_ltrimmed.php', join_paths('only', '/os_separator/', '/get_ltrimmed.php')];
        yield ['ase_path\\does_not\get_trimmed.php', join_paths('\base_path\', '\does_not', '\get_trimmed.php')];
        yield ['Empty\Segments\Get_removed.php', join_paths('Empty', '', '0', null, 0, false, [], '1', 'Segments', '00', 'Get_removed.php')];
        yield ['', join_paths(null, null, '')];
        yield ['1', join_paths(1, 2, 3)];
        yield ['app\objecty', join_paths('app', new class()
        {
            public function __toString()
            {
                return 'objecty';
            }
        })];
        yield ['app\0', join_paths('app', new class()
        {
            public function __toString()
            {
                return '0';
            }
        })];
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Illuminate\Tests\Filesystem;

use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\RequiresOperatingSystem;
use PHPUnit\Framework\TestCase;

use function Illuminate\Filesystem\join_paths;

class JoinPathsHelperTest extends TestCase
{
    #[RequiresOperatingSystem('Linux|DAR')]
    #[DataProvider('unixDataProvider')]
    public function testItCanMergePathsForUnix(string $expected, string $given)
    {
        $this->assertSame($expected, $given);
    }

    public static function unixDataProvider()
    {
        yield ['very/Basic/Functionality.php', join_paths('very', 'Basic', 'Functionality.php')];
        yield ['segments/get/ltrimed/by_directory/separator.php', join_paths('segments', '/get/ltrimed', '/by_directory/separator.php')];
        yield ['only/\\os_separator\\/\\get_ltrimmed.php', join_paths('only', '\\os_separator\\', '\\get_ltrimmed.php')];
        yield ['/base_path//does_not/get_trimmed.php', join_paths('/base_path/', '/does_not', '/get_trimmed.php')];
        yield ['Empty/0/1/Segments/00/Get_removed.php', join_paths('Empty', '', '0', null, 0, false, [], '1', 'Segments', '00', 'Get_removed.php')];
        yield ['', join_paths(null, null, '')];
        yield ['1/2/3', join_paths(1, 0, 2, 3)];
        yield ['app/objecty', join_paths('app', new class()
        {
            public function __toString()
            {
                return 'objecty';
            }
        })];
        yield ['app/0', join_paths('app', new class()
        {
            public function __toString()
            {
                return '0';
            }
        })];
    }

    #[RequiresOperatingSystem('Windows')]
    #[DataProvider('windowsDataProvider')]
    public function testItCanMergePathsForWindows(string $expected, string $given)
    {
        $this->assertSame($expected, $given);
    }

    public static function windowsDataProvider()
    {
        yield ['app\Basic\Functionality.php', join_paths('app', 'Basic', 'Functionality.php')];
        yield ['segments\get\ltrimed\by_directory\separator.php', join_paths('segments', '\get\ltrimed', '\by_directory\separator.php')];
        yield ['only\\/os_separator/\\/get_ltrimmed.php', join_paths('only', '/os_separator/', '/get_ltrimmed.php')];
        yield ['\base_path\\\\does_not\get_trimmed.php', join_paths('\\base_path\\', '\does_not', '\get_trimmed.php')];
        yield ['Empty\0\1\Segments\00\Get_removed.php', join_paths('Empty', '', '0', null, 0, false, [], '1', 'Segments', '00', 'Get_removed.php')];
        yield ['', join_paths(null, null, '')];
        yield ['1\2\3', join_paths(1, 2, 3)];
        yield ['app\\objecty', join_paths('app', new class()
        {
            public function __toString()
            {
                return 'objecty';
            }
        })];
        yield ['app\\0', join_paths('app', new class()
        {
            public function __toString()
            {
                return '0';
            }
        })];
    }
}

Function Calls

None

Variables

None

Stats

MD5 e9dd190ce73dc00bdd317cd532d729f8
Eval Count 0
Decode Time 83 ms