📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: DataRepository.php
<?php namespace App\Repository; use App\Entity\Data; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\Persistence\ManagerRegistry; /** * @extends ServiceEntityRepository<Data> * * @method Data|null find($id, $lockMode = null, $lockVersion = null) * @method Data|null findOneBy(array $criteria, array $orderBy = null) * @method Data[] findAll() * @method Data[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class DataRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, Data::class); } }
Save