Browse
For agents
About
FakerPress
/
0.1.2
FakerPress
v0.1.2
Switch version
0.9.2
trunk
0.1.0
0.1.1
0.1.2
0.1.3
0.5.2
0.5.3
0.6.1
0.6.2
0.6.3
0.6.4
0.6.5
0.6.6
0.7.0
0.7.1
0.7.2
0.8.0
0.9.0
0.9.1
Overview
Code
fakerpress
/
modules
/
post.php
post.php
in FakerPress 0.1.2, at modules/post.php
20 lines
327 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
namespace
FakerPress
\
Module
;
3
4
class
Post
extends
Base
{
5
6
public
$
dependencies
=
array
(
7
'
\Faker\Provider\Lorem
'
,
8
'
\Faker\Provider\DateTime
'
,
9
'
\Faker\Provider\Html
'
,
10
)
;
11
12
public
$
provider
=
'
\Faker\Provider\WP_Post
'
;
13
14
public
function
save
(
)
{
15
$
post_id
=
wp_insert_post
(
$
this
->
params
)
;
16
17
return
$
post_id
;
18
}
19
}
20