]> Raphaƫl G. Git Repositories - blogbundle/blobdiff - Entity/ArticleKeyword.php
Remove unused entities
[blogbundle] / Entity / ArticleKeyword.php
diff --git a/Entity/ArticleKeyword.php b/Entity/ArticleKeyword.php
deleted file mode 100644 (file)
index 287f491..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-namespace Rapsys\BlogBundle\Entity;
-
-/**
- * ArticleKeyword
- */
-class ArticleKeyword
-{
-    /**
-     * @var integer
-     */
-    private $article_id;
-
-    /**
-     * @var integer
-     */
-    private $keyword_id;
-
-    /**
-     * Constructor
-     */
-    public function __construct($article_id, $keyword_id) {
-           $this->article_id = $article_id;
-           $this->keyword_id = $keyword_id;
-    }
-}