diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2015-08-24 12:35:02 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2015-08-24 12:35:02 +0200 |
commit | a1413a3da9e845a0f2e00e73069f5363864367bd (patch) | |
tree | 4fdfa083a26c87dd305394666afe5b9c24921b65 /src/Wallabag | |
parent | fad316151c282b2383fae751f7ca45373f1f26ed (diff) | |
download | wallabag-a1413a3da9e845a0f2e00e73069f5363864367bd.tar.gz wallabag-a1413a3da9e845a0f2e00e73069f5363864367bd.tar.zst wallabag-a1413a3da9e845a0f2e00e73069f5363864367bd.zip |
CS
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/ApiBundle/Controller/WallabagRestController.php | 1 | ||||
-rw-r--r-- | src/Wallabag/CoreBundle/Controller/EntryController.php | 1 | ||||
-rw-r--r-- | src/Wallabag/CoreBundle/Entity/Entry.php | 5 |
3 files changed, 2 insertions, 5 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php index d5579de4..9ca008bf 100644 --- a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php +++ b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php | |||
@@ -8,7 +8,6 @@ use Symfony\Component\HttpFoundation\Request; | |||
8 | use Symfony\Component\HttpFoundation\Response; | 8 | use Symfony\Component\HttpFoundation\Response; |
9 | use Wallabag\CoreBundle\Entity\Entry; | 9 | use Wallabag\CoreBundle\Entity\Entry; |
10 | use Wallabag\CoreBundle\Entity\Tag; | 10 | use Wallabag\CoreBundle\Entity\Tag; |
11 | use Wallabag\CoreBundle\Service\Extractor; | ||
12 | use Hateoas\Configuration\Route; | 11 | use Hateoas\Configuration\Route; |
13 | use Hateoas\Representation\Factory\PagerfantaFactory; | 12 | use Hateoas\Representation\Factory\PagerfantaFactory; |
14 | 13 | ||
diff --git a/src/Wallabag/CoreBundle/Controller/EntryController.php b/src/Wallabag/CoreBundle/Controller/EntryController.php index bd87c6f4..8e714763 100644 --- a/src/Wallabag/CoreBundle/Controller/EntryController.php +++ b/src/Wallabag/CoreBundle/Controller/EntryController.php | |||
@@ -6,7 +6,6 @@ use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; | |||
6 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; | 6 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
7 | use Symfony\Component\HttpFoundation\Request; | 7 | use Symfony\Component\HttpFoundation\Request; |
8 | use Wallabag\CoreBundle\Entity\Entry; | 8 | use Wallabag\CoreBundle\Entity\Entry; |
9 | use Wallabag\CoreBundle\Service\Extractor; | ||
10 | use Wallabag\CoreBundle\Form\Type\NewEntryType; | 9 | use Wallabag\CoreBundle\Form\Type\NewEntryType; |
11 | use Wallabag\CoreBundle\Form\Type\EditEntryType; | 10 | use Wallabag\CoreBundle\Form\Type\EditEntryType; |
12 | use Wallabag\CoreBundle\Filter\EntryFilterType; | 11 | use Wallabag\CoreBundle\Filter\EntryFilterType; |
diff --git a/src/Wallabag/CoreBundle/Entity/Entry.php b/src/Wallabag/CoreBundle/Entity/Entry.php index 5e3f9a37..e684c9b1 100644 --- a/src/Wallabag/CoreBundle/Entity/Entry.php +++ b/src/Wallabag/CoreBundle/Entity/Entry.php | |||
@@ -428,7 +428,7 @@ class Entry | |||
428 | } | 428 | } |
429 | 429 | ||
430 | /** | 430 | /** |
431 | * Set previewPicture | 431 | * Set previewPicture. |
432 | * | 432 | * |
433 | * @param string $previewPicture | 433 | * @param string $previewPicture |
434 | * | 434 | * |
@@ -442,7 +442,7 @@ class Entry | |||
442 | } | 442 | } |
443 | 443 | ||
444 | /** | 444 | /** |
445 | * Get previewPicture | 445 | * Get previewPicture. |
446 | * | 446 | * |
447 | * @return string | 447 | * @return string |
448 | */ | 448 | */ |
@@ -450,5 +450,4 @@ class Entry | |||
450 | { | 450 | { |
451 | return $this->previewPicture; | 451 | return $this->previewPicture; |
452 | } | 452 | } |
453 | |||
454 | } | 453 | } |