Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.145.80.161
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
security-core /
Event /
Delete
Unzip
Name
Size
Permission
Date
Action
AuthenticationEvent.php
815
B
-rw-rw-r--
2022-07-20 13:00
AuthenticationFailureEvent.php
1.31
KB
-rw-rw-r--
2022-07-20 13:00
AuthenticationSuccessEvent.php
359
B
-rw-rw-r--
2022-07-20 13:00
VoteEvent.php
1.21
KB
-rw-rw-r--
2022-07-20 13:00
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Core\Event; use Symfony\Component\Security\Core\Authorization\Voter\VoterInterface; use Symfony\Contracts\EventDispatcher\Event; /** * This event is dispatched on voter vote. * * @author Laurent VOULLEMIER <laurent.voullemier@gmail.com> * * @internal */ final class VoteEvent extends Event { private $voter; private $subject; private $attributes; private $vote; public function __construct(VoterInterface $voter, $subject, array $attributes, int $vote) { $this->voter = $voter; $this->subject = $subject; $this->attributes = $attributes; $this->vote = $vote; } public function getVoter(): VoterInterface { return $this->voter; } public function getSubject() { return $this->subject; } public function getAttributes(): array { return $this->attributes; } public function getVote(): int { return $this->vote; } }