1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-22 17:18:37 +00:00
This commit is contained in:
Jeremy Benoist 2015-08-24 12:35:02 +02:00
parent fad316151c
commit a1413a3da9
4 changed files with 409 additions and 114 deletions

View file

@ -8,7 +8,6 @@ use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\Tag;
use Wallabag\CoreBundle\Service\Extractor;
use Hateoas\Configuration\Route;
use Hateoas\Representation\Factory\PagerfantaFactory;

View file

@ -6,7 +6,6 @@ use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Service\Extractor;
use Wallabag\CoreBundle\Form\Type\NewEntryType;
use Wallabag\CoreBundle\Form\Type\EditEntryType;
use Wallabag\CoreBundle\Filter\EntryFilterType;

View file

@ -428,7 +428,7 @@ class Entry
}
/**
* Set previewPicture
* Set previewPicture.
*
* @param string $previewPicture
*
@ -442,7 +442,7 @@ class Entry
}
/**
* Get previewPicture
* Get previewPicture.
*
* @return string
*/
@ -450,5 +450,4 @@ class Entry
{
return $this->previewPicture;
}
}