Skip to content

Commit 8c93d36

Browse files
committed
feat(release): first release?
1 parent cc7351c commit 8c93d36

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

finder.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
return \StubsGenerator\Finder::create()
44
->in('source/genesis/lib/functions')
5+
->append(\StubsGenerator\Finder::create()
6+
->in(['source/genesis/lib'])
7+
->files()
8+
->depth('< 1')
9+
->path('framework.php')
10+
)
511
->notPath('compat.php')
612
->notPath('deprecated.php')
713
->sortByName()

genesis-stubs.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -602,6 +602,28 @@ function site_footer($attributes)
602602
}
603603
}
604604
namespace {
605+
/**
606+
* Genesis Framework.
607+
*
608+
* WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
609+
* Please do all modifications in the form of a child theme.
610+
*
611+
* @package Genesis\Framework
612+
* @author StudioPress
613+
* @license GPL-2.0-or-later
614+
* @link https://my.studiopress.com/themes/genesis/
615+
*/
616+
/**
617+
* Used to initialize the framework in the various template files.
618+
*
619+
* It pulls in all the necessary components like header and footer, the basic
620+
* markup structure, and hooks.
621+
*
622+
* @since 1.3.0
623+
*/
624+
function genesis()
625+
{
626+
}
605627
/**
606628
* Genesis Framework.
607629
*

0 commit comments

Comments
 (0)