Rapsys Git
/
blogbundle
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add translations
[blogbundle]
/
Entity
/
ArticleKeyword.php
1
<?
php
2
3
namespace
Rapsys\BlogBundle\Entity
;
4
5
/**
6
* ArticleKeyword
7
*/
8
class
ArticleKeyword
9
{
10
/**
11
* @var integer
12
*/
13
private
$article_id
;
14
15
/**
16
* @var integer
17
*/
18
private
$keyword_id
;
19
20
/**
21
* Constructor
22
*/
23
public function
__construct
(
$article_id
,
$keyword_id
) {
24
$this-
>
article_id
=
$article_id
;
25
$this-
>
keyword_id
=
$keyword_id
;
26
}
27
}