Skip to content

Commit

Permalink
Update Authentication.php
Browse files Browse the repository at this point in the history
  • Loading branch information
bsdrazor authored Aug 17, 2024
1 parent c2efa71 commit 68b82a5
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions src/Authentication/Authentication.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,29 @@
*/

namespace CKSource\Bundle\CKFinderBundle\Authentication;
use Symfony\Component\DependencyInjection\ContainerInterface;

use Symfony\Component\DependencyInjection\ContainerAwareTrait;

class Authentication implements AuthenticationInterface
{
use ContainerAwareTrait;
/**
* @var ContainerInterface
*/
protected ContainerInterface $container;


public function authenticate(): bool
{
return false;
}

/**
* Sets the container.
*
* @param ContainerInterface|null $container A ContainerInterface instance or null
*/
public function setContainer(ContainerInterface $container = null): void
{
$this->container = $container;
}
}

0 comments on commit 68b82a5

Please sign in to comment.