SYMBOL INDEX (158 symbols across 33 files) FILE: spa/src/api/api.js function fetchCollection (line 1) | function fetchCollection(path) { function findConferences (line 5) | function findConferences() { function findComments (line 9) | function findComments(conference) { FILE: spa/src/app.js function App (line 11) | function App() { FILE: spa/src/pages/conference.js function Comment (line 5) | function Comment({comments}) { function Conference (line 34) | function Conference({conferences, slug}) { FILE: spa/src/pages/home.js function Home (line 4) | function Home({conferences}) { FILE: src/Api/FilterPublishedCommentQueryExtension.php class FilterPublishedCommentQueryExtension (line 11) | class FilterPublishedCommentQueryExtension implements QueryCollectionExt... method applyToCollection (line 13) | public function applyToCollection(QueryBuilder $qb, QueryNameGenerator... method applyToItem (line 20) | public function applyToItem(QueryBuilder $qb, QueryNameGeneratorInterf... FILE: src/Command/CommentCleanupCommand.php class CommentCleanupCommand (line 12) | class CommentCleanupCommand extends Command method __construct (line 18) | public function __construct(CommentRepository $commentRepository) method configure (line 25) | protected function configure() method execute (line 33) | protected function execute(InputInterface $input, OutputInterface $out... FILE: src/Command/StepInfoCommand.php class StepInfoCommand (line 11) | class StepInfoCommand extends Command method __construct (line 17) | public function __construct(CacheInterface $cache) method execute (line 24) | protected function execute(InputInterface $input, OutputInterface $out... FILE: src/Controller/AdminController.php class AdminController (line 22) | class AdminController extends AbstractController method __construct (line 28) | public function __construct(Environment $twig, EntityManagerInterface ... method reviewComment (line 38) | public function reviewComment(Request $request, Comment $comment, Regi... method purgeHttpCache (line 68) | public function purgeHttpCache(KernelInterface $kernel, Request $reque... FILE: src/Controller/ConferenceController.php class ConferenceController (line 23) | class ConferenceController extends AbstractController method __construct (line 29) | public function __construct(Environment $twig, EntityManagerInterface ... method indexNoLocale (line 39) | public function indexNoLocale() method index (line 47) | public function index(ConferenceRepository $conferenceRepository) method conferenceHeader (line 60) | public function conferenceHeader(ConferenceRepository $conferenceRepos... method show (line 73) | public function show(Request $request, Conference $conference, Comment... FILE: src/Controller/SecurityController.php class SecurityController (line 10) | class SecurityController extends AbstractController method login (line 15) | public function login(AuthenticationUtils $authenticationUtils): Response method logout (line 32) | public function logout() FILE: src/DataFixtures/AppFixtures.php class AppFixtures (line 12) | class AppFixtures extends Fixture method __construct (line 16) | public function __construct(EncoderFactoryInterface $encoderFactory) method load (line 21) | public function load(ObjectManager $manager) FILE: src/Entity/Admin.php class Admin (line 11) | class Admin implements UserInterface method getId (line 36) | public function getId(): ?int method getUsername (line 46) | public function getUsername(): string method setUsername (line 51) | public function setUsername(string $username): self method getRoles (line 61) | public function getRoles(): array method setRoles (line 70) | public function setRoles(array $roles): self method __toString (line 77) | public function __toString(): string method getPassword (line 85) | public function getPassword(): string method setPassword (line 90) | public function setPassword(string $password): self method getSalt (line 100) | public function getSalt() method eraseCredentials (line 108) | public function eraseCredentials() FILE: src/Entity/Comment.php class Comment (line 25) | class Comment method __toString (line 88) | public function __toString(): string method getId (line 93) | public function getId(): ?int method getAuthor (line 98) | public function getAuthor(): ?string method setAuthor (line 103) | public function setAuthor(string $author): self method getText (line 110) | public function getText(): ?string method setText (line 115) | public function setText(string $text): self method getEmail (line 122) | public function getEmail(): ?string method setEmail (line 127) | public function setEmail(string $email): self method getCreatedAt (line 134) | public function getCreatedAt(): ?\DateTimeInterface method setCreatedAt (line 139) | public function setCreatedAt(\DateTimeInterface $createdAt): self method setCreatedAtValue (line 149) | public function setCreatedAtValue() method getConference (line 154) | public function getConference(): ?Conference method setConference (line 159) | public function setConference(?Conference $conference): self method getPhotoFilename (line 166) | public function getPhotoFilename(): ?string method setPhotoFilename (line 171) | public function setPhotoFilename(?string $photoFilename): self method getState (line 178) | public function getState(): ?string method setState (line 183) | public function setState(string $state): self FILE: src/Entity/Conference.php class Conference (line 24) | class Conference method __construct (line 68) | public function __construct() method __toString (line 73) | public function __toString(): string method getId (line 78) | public function getId(): ?int method computeSlug (line 83) | public function computeSlug(SluggerInterface $slugger) method getCity (line 90) | public function getCity(): ?string method setCity (line 95) | public function setCity(string $city): self method getYear (line 102) | public function getYear(): ?string method setYear (line 107) | public function setYear(string $year): self method getIsInternational (line 114) | public function getIsInternational(): ?bool method setIsInternational (line 119) | public function setIsInternational(bool $isInternational): self method getComments (line 129) | public function getComments(): Collection method addComment (line 134) | public function addComment(Comment $comment): self method removeComment (line 144) | public function removeComment(Comment $comment): self method getSlug (line 157) | public function getSlug(): ?string method setSlug (line 162) | public function setSlug(string $slug): self FILE: src/EntityListener/ConferenceEntityListener.php class ConferenceEntityListener (line 9) | class ConferenceEntityListener method __construct (line 13) | public function __construct(SluggerInterface $slugger) method prePersist (line 18) | public function prePersist(Conference $conference, LifecycleEventArgs ... method preUpdate (line 23) | public function preUpdate(Conference $conference, LifecycleEventArgs $... FILE: src/Form/CommentFormType.php class CommentFormType (line 14) | class CommentFormType extends AbstractType method buildForm (line 16) | public function buildForm(FormBuilderInterface $builder, array $options) method configureOptions (line 35) | public function configureOptions(OptionsResolver $resolver) FILE: src/ImageOptimizer.php class ImageOptimizer (line 8) | class ImageOptimizer method __construct (line 15) | public function __construct() method resize (line 20) | public function resize(string $filename): void FILE: src/Kernel.php class Kernel (line 12) | class Kernel extends BaseKernel method registerBundles (line 18) | public function registerBundles(): iterable method getProjectDir (line 28) | public function getProjectDir(): string method configureContainer (line 33) | protected function configureContainer(ContainerBuilder $container, Loa... method configureRoutes (line 46) | protected function configureRoutes(RouteCollectionBuilder $routes): void FILE: src/Message/CommentMessage.php class CommentMessage (line 5) | class CommentMessage method __construct (line 11) | public function __construct(int $id, string $reviewUrl, array $context... method getReviewUrl (line 18) | public function getReviewUrl(): string method getId (line 23) | public function getId(): int method getContext (line 28) | public function getContext(): array FILE: src/MessageHandler/CommentMessageHandler.php class CommentMessageHandler (line 17) | class CommentMessageHandler implements MessageHandlerInterface method __construct (line 29) | public function __construct(EntityManagerInterface $entityManager, Spa... method __invoke (line 42) | public function __invoke(CommentMessage $message) FILE: src/Migrations/Version20200107080917.php class Version20200107080917 (line 13) | final class Version20200107080917 extends AbstractMigration method getDescription (line 15) | public function getDescription() : string method up (line 20) | public function up(Schema $schema) : void method down (line 33) | public function down(Schema $schema) : void FILE: src/Migrations/Version20200107081222.php class Version20200107081222 (line 13) | final class Version20200107081222 extends AbstractMigration method getDescription (line 15) | public function getDescription() : string method up (line 20) | public function up(Schema $schema) : void method down (line 30) | public function down(Schema $schema) : void FILE: src/Migrations/Version20200107081238.php class Version20200107081238 (line 13) | final class Version20200107081238 extends AbstractMigration method getDescription (line 15) | public function getDescription() : string method up (line 20) | public function up(Schema $schema) : void method down (line 28) | public function down(Schema $schema) : void FILE: src/Migrations/Version20200107081419.php class Version20200107081419 (line 13) | final class Version20200107081419 extends AbstractMigration method getDescription (line 15) | public function getDescription() : string method up (line 20) | public function up(Schema $schema) : void method down (line 30) | public function down(Schema $schema) : void FILE: src/Migrations/Version20200107081708.php class Version20200107081708 (line 13) | final class Version20200107081708 extends AbstractMigration method getDescription (line 15) | public function getDescription() : string method up (line 20) | public function up(Schema $schema) : void method down (line 30) | public function down(Schema $schema) : void FILE: src/Notification/CommentReviewNotification.php class CommentReviewNotification (line 17) | class CommentReviewNotification extends Notification implements EmailNot... method __construct (line 22) | public function __construct(Comment $comment, string $reviewUrl) method asEmailMessage (line 30) | public function asEmailMessage(Recipient $recipient, string $transport... method asChatMessage (line 41) | public function asChatMessage(Recipient $recipient, string $transport ... method getChannels (line 67) | public function getChannels(Recipient $recipient): array FILE: src/Repository/AdminRepository.php class AdminRepository (line 18) | class AdminRepository extends ServiceEntityRepository implements Passwor... method __construct (line 20) | public function __construct(ManagerRegistry $registry) method upgradePassword (line 28) | public function upgradePassword(UserInterface $user, string $newEncode... FILE: src/Repository/CommentRepository.php class CommentRepository (line 18) | class CommentRepository extends ServiceEntityRepository method __construct (line 24) | public function __construct(ManagerRegistry $registry) method countOldRejected (line 29) | public function countOldRejected(): int method deleteOldRejected (line 34) | public function deleteOldRejected(): int method getOldRejectedQueryBuilder (line 39) | private function getOldRejectedQueryBuilder(): QueryBuilder method getCommentPaginator (line 52) | public function getCommentPaginator(Conference $conference, int $offse... FILE: src/Repository/ConferenceRepository.php class ConferenceRepository (line 15) | class ConferenceRepository extends ServiceEntityRepository method __construct (line 17) | public function __construct(ManagerRegistry $registry) method findAll (line 22) | public function findAll() FILE: src/Security/AppAuthenticator.php class AppAuthenticator (line 23) | class AppAuthenticator extends AbstractFormLoginAuthenticator implements... method __construct (line 32) | public function __construct(EntityManagerInterface $entityManager, Url... method supports (line 40) | public function supports(Request $request) method getCredentials (line 46) | public function getCredentials(Request $request) method getUser (line 61) | public function getUser($credentials, UserProviderInterface $userProvi... method checkCredentials (line 78) | public function checkCredentials($credentials, UserInterface $user) method getPassword (line 86) | public function getPassword($credentials): ?string method onAuthenticationSuccess (line 91) | public function onAuthenticationSuccess(Request $request, TokenInterfa... method getLoginUrl (line 100) | protected function getLoginUrl() FILE: src/SpamChecker.php class SpamChecker (line 8) | class SpamChecker method __construct (line 13) | public function __construct(HttpClientInterface $client, string $akism... method getSpamScore (line 24) | public function getSpamScore(Comment $comment, array $context): int FILE: tests/Controller/ConferenceControllerTest.php class ConferenceControllerTest (line 9) | class ConferenceControllerTest extends WebTestCase method testIndex (line 11) | public function testIndex() method testCommentSubmission (line 20) | public function testCommentSubmission() method testConferencePage (line 41) | public function testConferencePage() FILE: tests/SpamCheckerTest.php class SpamCheckerTest (line 12) | class SpamCheckerTest extends TestCase method testSpamScoreWithInvalidRequest (line 14) | public function testSpamScoreWithInvalidRequest() method testSpamScore (line 31) | public function testSpamScore(int $expectedScore, ResponseInterface $r... method getComments (line 40) | public function getComments(): iterable