Skip to content

Commit 811f77e

Browse files
committed
Create ExampleClass.php
1 parent 739dfd7 commit 811f77e

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

src/ExampleClass.php

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?php
2+
3+
namespace :vendor_namespace\:package_class_name;
4+
5+
class :package_class_name
6+
{
7+
public function getPackageDetail()
8+
{
9+
return [
10+
'author' => [
11+
'name' => ':author_name',
12+
'username' => ':author_username',
13+
'email' => ':author_email',
14+
],
15+
'vendor' => [
16+
'name' => ':vendor_name',
17+
'slug' => ':vendor_slug',
18+
],
19+
'package' => [
20+
'name' => ':package_name',
21+
'slug' => ':package_slug',
22+
'description' => ':package_description',
23+
],
24+
];
25+
}
26+
}

0 commit comments

Comments
 (0)