Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/279.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php Symfony 4:找不到DataFixtures目录_Php_Symfony_Symfony4 - Fatal编程技术网

Php Symfony 4:找不到DataFixtures目录

Php Symfony 4:找不到DataFixtures目录,php,symfony,symfony4,Php,Symfony,Symfony4,我用的是symfony4 我用这个命令php-bin/console-make:entity创建了一个名为Ad:entity的make Ad.php <?php namespace App\Entity; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass="App\Repository\AdRepository") */ class Ad { /** * @ORM\Id() * @ORM\Gen

我用的是symfony4

我用这个命令php-bin/console-make:entity创建了一个名为Ad:entity的make

Ad.php

<?php

namespace App\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
* @ORM\Entity(repositoryClass="App\Repository\AdRepository")
*/
class Ad
{
 /**
 * @ORM\Id()
 * @ORM\GeneratedValue()
 * @ORM\Column(type="integer")
 */
private $id;

/**
 * @ORM\Column(type="string", length=255)
 */
private $title;

/**
 * @ORM\Column(type="string", length=255)
 */
private $slug;

/**
 * @ORM\Column(type="float")
 */
private $price;

/**
 * @ORM\Column(type="text")
 */
private $introduction;

/**
 * @ORM\Column(type="text")
 */
private $content;

/**
 * @ORM\Column(type="string", length=255)
 */
private $coverImage;

/**
 * @ORM\Column(type="integer")
 */
private $rooms;

public function getId(): ?int
{
    return $this->id;
}

public function getTitle(): ?string
{
    return $this->title;
}

public function setTitle(string $title): self
{
    $this->title = $title;

    return $this;
}

public function getSlug(): ?string
{
    return $this->slug;
}

public function setSlug(string $slug): self
{
    $this->slug = $slug;

    return $this;
}

public function getPrice(): ?float
{
    return $this->price;
}

public function setPrice(float $price): self
{
    $this->price = $price;

    return $this;
}

public function getIntroduction(): ?string
{
    return $this->introduction;
}

public function setIntroduction(string $introduction): self
{
    $this->introduction = $introduction;

    return $this;
}

public function getContent(): ?string
{
    return $this->content;
}

public function setContent(string $content): self
{
    $this->content = $content;

    return $this;
}

public function getCoverImage(): ?string
{
    return $this->coverImage;
}

public function setCoverImage(string $coverImage): self
{
    $this->coverImage = $coverImage;

    return $this;
}

public function getRooms(): ?int
{
    return $this->rooms;
}

public function setRooms(int $rooms): self
{
    $this->rooms = $rooms;

    return $this;
}
}

请在任何地方阅读文档,它说目录是默认创建的,您必须手动创建并开始在那里添加设备。是的,我知道,但我想说的是,我没有看到任何文件夹DataFixtures!正如@ReynierPM所说的,如果你看不到它,就手动创建它