Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.79
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
src /
CoreBundle /
Repository /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
BatchJobsRepository.php
1.44
KB
-rwxrwxr-x
2026-04-02 12:06
ErrorLogRepository.php
3.3
KB
-rwxrwxr-x
2026-05-25 12:28
KeyValueRepository.php
1.78
KB
-rwxrwxr-x
2026-04-02 12:06
PickListRepository.php
1.43
KB
-rwxrwxr-x
2026-04-02 12:06
SystemSettingGroupRepository.php
1.54
KB
-rwxrwxr-x
2026-04-02 12:06
SystemSettingRepository.php
1.48
KB
-rwxrwxr-x
2026-04-02 12:06
TempValueRepository.php
1.44
KB
-rwxrwxr-x
2026-04-02 12:06
php_errors.log
2.13
KB
-rwxrwxr-x
2026-04-02 12:06
Save
Rename
<?php namespace App\CoreBundle\Repository; use App\CoreBundle\Entity\BatchJobs; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\Persistence\ManagerRegistry; /** * @extends ServiceEntityRepository<BatchJobs> * * @method BatchJobs|null find($id, $lockMode = null, $lockVersion = null) * @method BatchJobs|null findOneBy(array $criteria, array $orderBy = null) * @method BatchJobs[] findAll() * @method BatchJobs[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class BatchJobsRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, BatchJobs::class); } // /** // * @return BatchJobs[] Returns an array of BatchJobs objects // */ // public function findByExampleField($value): array // { // return $this->createQueryBuilder('b') // ->andWhere('b.exampleField = :val') // ->setParameter('val', $value) // ->orderBy('b.id', 'ASC') // ->setMaxResults(10) // ->getQuery() // ->getResult() // ; // } // public function findOneBySomeField($value): ?BatchJobs // { // return $this->createQueryBuilder('b') // ->andWhere('b.exampleField = :val') // ->setParameter('val', $value) // ->getQuery() // ->getOneOrNullResult() // ; // } }