webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
hamcrest
/
hamcrest-php
/
hamcrest
/
Hamcrest
/
Core
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
AllOf.php
1.418KB
edt
ren
AnyOf.php
1.232KB
edt
ren
CombinableMatcher.php
1.739KB
edt
ren
DescribedAs.php
1.806KB
edt
ren
Every.php
1.307KB
edt
ren
HasToString.php
1.243KB
edt
ren
Is.php
1.323KB
edt
ren
IsAnything.php
0.854KB
edt
ren
IsCollectionContaining.php
2.105KB
edt
ren
IsEqual.php
0.815KB
edt
ren
IsIdentical.php
0.691KB
edt
ren
IsInstanceOf.php
1.664KB
edt
ren
IsNot.php
0.807KB
edt
ren
IsNull.php
0.953KB
edt
ren
IsSame.php
1.068KB
edt
ren
IsTypeOf.php
1.642KB
edt
ren
Set.php
2.352KB
edt
ren
ShortcutCombination.php
0.898KB
edt
ren
<?php namespace Hamcrest\Core; /* Copyright (c) 2009 hamcrest.org */ use Hamcrest\Description; use Hamcrest\Matcher; use Hamcrest\TypeSafeDiagnosingMatcher; class Every extends TypeSafeDiagnosingMatcher { private $_matcher; public function __construct(Matcher $matcher) { parent::__construct(self::TYPE_ARRAY); $this->_matcher = $matcher; } protected function matchesSafelyWithDiagnosticDescription($items, Description $mismatchDescription) { foreach ($items as $item) { if (!$this->_matcher->matches($item)) { $mismatchDescription->appendText('an item '); $this->_matcher->describeMismatch($item, $mismatchDescription); return false; } } return true; } public function describeTo(Description $description) { $description->appendText('every item is ')->appendDescriptionOf($this->_matcher); } /** * @param Matcher $itemMatcher * A matcher to apply to every element in an array. * * @return \Hamcrest\Core\Every * Evaluates to TRUE for a collection in which every item matches $itemMatcher * * @factory */ public static function everyItem(Matcher $itemMatcher) { return new self($itemMatcher); } }