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
/
comment.php
comment.php
in FakerPress 0.1.2, at modules/comment.php
14 lines
279 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
Comment
extends
Base
{
5
6
public
$
provider
=
'
\Faker\Provider\WP_Comment
'
;
7
8
public
function
save
(
)
{
9
//
Here you should use the `$this->args['param_name']`
10
//
var_dump( $this->args );
11
return
wp_insert_comment
(
$
this
->
params
)
;
12
}
13
}
14