Ran code through php-cs-fixer
Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
parent
d9fe0d8bcf
commit
ee187ee044
@ -54,4 +54,3 @@ class BlogController extends Controller
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -127,7 +127,6 @@ class BookController extends Controller
|
||||
*/
|
||||
public function ajaxSetBookCopyBorrowableAction(Book $book, $newValue)
|
||||
{
|
||||
error_log($newValue);
|
||||
$user = $this->get('security.context')->getToken()->getUser();
|
||||
$copies = $book->getUsersCopies($user);
|
||||
$em = $this->getDoctrine()->getEntityManager();
|
||||
|
@ -190,7 +190,7 @@ class ForumController extends Controller
|
||||
*/
|
||||
public function favouriteTopic($topicGroupSlug, $topicSlug)
|
||||
{
|
||||
$topicGroupRepo = $this->getDoctrine()->getRepository('KekRozsakFrontBundle:ForumTopicGroup');
|
||||
$topicGroupRepo = $this->getDoctrine()->getRepository('KekRozsakFrontBundle:ForumTopicGroup');
|
||||
if (null === $topicGroup = $topicGroupRepo->findOneBySlug($topicGroupSlug)) {
|
||||
throw $this->createNotFoundException('Ilyen témakör nem létezik!');
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ class NewsController extends Controller
|
||||
$newsRepo = $this->getDoctrine()->getRepository('KekRozsakFrontBundle:News');
|
||||
$searchCriteria = array(
|
||||
'draft' => false,
|
||||
);
|
||||
);
|
||||
if (
|
||||
!is_object($this->get('security.context')->getToken())
|
||||
|| !is_object($this->get('security.context')->getToken()->getUser())
|
||||
|
@ -44,13 +44,14 @@ class BlogPost
|
||||
/**
|
||||
* Set published
|
||||
*
|
||||
* @param boolean $published
|
||||
* @param boolean $published
|
||||
* @return BlogPost
|
||||
*/
|
||||
public function setPublished($published)
|
||||
{
|
||||
// TODO: Check if parameter is boolean!
|
||||
$this->published = $published;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -83,6 +84,7 @@ class BlogPost
|
||||
public function setGroup(Group $group)
|
||||
{
|
||||
$this->group = $group;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -108,13 +110,14 @@ class BlogPost
|
||||
/**
|
||||
* Set title
|
||||
*
|
||||
* @param string $title
|
||||
* @param string $title
|
||||
* @return BlogPost
|
||||
*/
|
||||
public function setTitle($title)
|
||||
{
|
||||
// TODO: Check if not null nor empty!
|
||||
$this->title = $title;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -140,13 +143,14 @@ class BlogPost
|
||||
/**
|
||||
* Set slug
|
||||
*
|
||||
* @param string $slug
|
||||
* @param string $slug
|
||||
* @return BlogPost
|
||||
*/
|
||||
public function setSlug($slug)
|
||||
{
|
||||
// TODO: Check if not null nor empty!
|
||||
$this->slug = $slug;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -180,6 +184,7 @@ class BlogPost
|
||||
{
|
||||
// TODO: Check if not null!
|
||||
$this->createdBy = $createdBy;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -212,6 +217,7 @@ class BlogPost
|
||||
{
|
||||
// TODO: Check if not null!
|
||||
$this->createdAt = $createdAt;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -244,6 +250,7 @@ class BlogPost
|
||||
public function setUpdatedBy(User $updatedBy)
|
||||
{
|
||||
$this->updatedBy = $updatedBy;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -276,6 +283,7 @@ class BlogPost
|
||||
public function setUpdatedAt(\DateTime $updatedAt)
|
||||
{
|
||||
$this->updatedAt = $updatedAt;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -291,7 +299,7 @@ class BlogPost
|
||||
/**
|
||||
* Set updateReason
|
||||
*
|
||||
* @param string $updateReason
|
||||
* @param string $updateReason
|
||||
* @return BlogPost
|
||||
*/
|
||||
public function setUpdateReason($updateReason)
|
||||
@ -300,6 +308,7 @@ class BlogPost
|
||||
$updateReason = null;
|
||||
}
|
||||
$this->updateReason = $updateReason;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -325,13 +334,14 @@ class BlogPost
|
||||
/**
|
||||
* Set content
|
||||
*
|
||||
* @param string $content
|
||||
* @param string $content
|
||||
* @return BlogPost
|
||||
*/
|
||||
public function setContent($content)
|
||||
{
|
||||
// TODO: Check if not null nor empty!
|
||||
$this->content = $content;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
@ -283,6 +283,7 @@ class Book
|
||||
{
|
||||
// TODO: Check if parameter is boolean!
|
||||
$this->commentable = $commentable;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
@ -186,6 +186,8 @@ class ForumTopic
|
||||
* @var string $title
|
||||
*
|
||||
* @ORM\Column(type="string", length=100, nullable=false)
|
||||
*
|
||||
* @Assert\NotBlank()
|
||||
*/
|
||||
protected $title;
|
||||
|
||||
|
@ -222,6 +222,7 @@ class News
|
||||
public function setSticky($sticky)
|
||||
{
|
||||
$this->sticky = $sticky;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -255,6 +256,7 @@ class News
|
||||
{
|
||||
// TODO: Check if parameter is boolean!
|
||||
$this->draft = $draft;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -268,4 +270,3 @@ class News
|
||||
return $this->draft;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -7,4 +7,4 @@
|
||||
* updatedAt
|
||||
* updateReason
|
||||
* content
|
||||
*/
|
||||
*/
|
||||
|
@ -50,13 +50,14 @@ class UploadNamespace
|
||||
/**
|
||||
* Set name
|
||||
*
|
||||
* @param string $name
|
||||
* @param string $name
|
||||
* @return UploadNamespace
|
||||
*/
|
||||
public function setName($name)
|
||||
{
|
||||
// TODO: Check if not null!
|
||||
$this->name = $name;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -82,13 +83,14 @@ class UploadNamespace
|
||||
/**
|
||||
* Set slug
|
||||
*
|
||||
* @param string $slug
|
||||
* @param string $slug
|
||||
* @return UploadNamespace
|
||||
*/
|
||||
public function setSlug($slug)
|
||||
{
|
||||
// TODO: Check if not null!
|
||||
$this->slug = $slug;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
@ -57,6 +57,7 @@ class UploadedFile
|
||||
{
|
||||
// TODO: Check if not null!
|
||||
$this->namespace = $namespace;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -76,19 +77,21 @@ class UploadedFile
|
||||
* @var string $filename
|
||||
*
|
||||
* @ORM\Column(type="string", length=100, nullable=false)
|
||||
* @Assert\NotBlank()
|
||||
*/
|
||||
protected $filename;
|
||||
|
||||
/**
|
||||
* Set filename
|
||||
*
|
||||
* @param string $filename
|
||||
* @param string $filename
|
||||
* @return UploadedFile
|
||||
*/
|
||||
public function setFilename($filename)
|
||||
{
|
||||
// TODO: Check if not null nor empty!
|
||||
$this->filename = $filename;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -124,13 +127,14 @@ class UploadedFile
|
||||
/**
|
||||
* Set mimeType
|
||||
*
|
||||
* @param string $mimeType
|
||||
* @param string $mimeType
|
||||
* @return UploadedFile
|
||||
*/
|
||||
public function setMimeType($mimeType)
|
||||
{
|
||||
// TODO: Check if not null nor empty!
|
||||
$this->mimeType = $mimeType;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -156,7 +160,7 @@ class UploadedFile
|
||||
/**
|
||||
* Set description
|
||||
*
|
||||
* @param string $description
|
||||
* @param string $description
|
||||
* @return UploadedFile
|
||||
*/
|
||||
public function setDescription($description)
|
||||
@ -166,6 +170,7 @@ class UploadedFile
|
||||
}
|
||||
|
||||
$this->description = $description;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
@ -480,6 +480,7 @@ class UserData
|
||||
{
|
||||
// TODO: Check if not null
|
||||
$this->favouriteTopics->add($topic);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -493,6 +494,7 @@ class UserData
|
||||
{
|
||||
// TODO: Check if not null
|
||||
$this->favouriteTopics->removeElement($topic);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -536,6 +538,7 @@ class UserData
|
||||
public function setAvatarImage(UploadedFile $avatarImage)
|
||||
{
|
||||
$this->avatarImage = $avatarImage;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
@ -2,4 +2,4 @@
|
||||
A könyvek részletes adatait a szerzőre, címre vagy a kiadás évére kattintva
|
||||
tudhatod meg. Az ekkor felbukkanó ablakban tudod bejelölni, ha neked is van
|
||||
egy példányod, vagy ha pl. szeretnél kölcsönkérni egyet.
|
||||
<p>
|
||||
<p>
|
||||
|
@ -6,4 +6,4 @@
|
||||
</table>
|
||||
<button id="new-book-save-button" type="submit">Mentés</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -27,11 +27,13 @@ class HelpUrlExtension extends \Twig_Extension
|
||||
* "container" = @DI\Inject("service_container")
|
||||
* })
|
||||
*/
|
||||
public function __construct(ContainerInterface $container) {
|
||||
public function __construct(ContainerInterface $container)
|
||||
{
|
||||
$this->container = $container;
|
||||
}
|
||||
|
||||
public function getGlobals() {
|
||||
public function getGlobals()
|
||||
{
|
||||
parent::getGlobals();
|
||||
|
||||
$request = $this->container->get('request');
|
||||
|
@ -365,8 +365,10 @@ class User implements UserInterface, AdvancedUserInterface
|
||||
return true;
|
||||
}
|
||||
$groups->add($group);
|
||||
|
||||
return true;
|
||||
});
|
||||
|
||||
return $groups;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user