vendor/nellapp/sdk-bundle/src/Google/Entity/GoogleDriveFile.php line 11

Open in your IDE?
  1. <?php
  2. namespace Nellapp\Bundle\SDKBundle\Google\Entity;
  3. use Nellapp\Bundle\SDKBundle\Google\Entity\GoogleDriveItem\GoogleDriveItem;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Nellapp\Bundle\SDKBundle\Google\Repository\GoogleDriveFileRepository;
  6. #[ORM\Entity(repositoryClassGoogleDriveFileRepository::class)]
  7. #[ORM\Table(name'google_drive_file')]
  8. class GoogleDriveFile extends GoogleDriveItem
  9. {
  10.     #[ORM\Column(type'string'length255nullablefalse)]
  11.     private ?string $googleType null;
  12.     #[ORM\Column(type'string'length255nullabletrue)]
  13.     private ?string $innerType null;
  14.     public function getGoogleType(): ?string
  15.     {
  16.         return $this->googleType;
  17.     }
  18.     public function setGoogleType(?string $googleType): GoogleDriveFile
  19.     {
  20.         $this->googleType $googleType;
  21.         return $this;
  22.     }
  23.     public function getInnerType(): ?string
  24.     {
  25.         return $this->innerType;
  26.     }
  27.     public function setInnerType(?string $innerType): GoogleDriveFile
  28.     {
  29.         $this->innerType $innerType;
  30.         return $this;
  31.     }
  32. }