File tree Expand file tree Collapse file tree 7 files changed +16
-16
lines changed
src/PhpStormMetaGenerator Expand file tree Collapse file tree 7 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 22/**
33 * Using the library as an example HostCMS
44 */
5- require_once ('../../src/PhpStormMetaGenerator/Interfaces /DriverInterface.php ' );
6- require_once ('../../src/PhpStormMetaGenerator/Interfaces/ MetaGeneratorInterface.php ' );
7- require_once ('../../src/PhpStormMetaGenerator/DriverAbstract.php ' );
5+ require_once ('../../src/PhpStormMetaGenerator/Drivers /DriverInterface.php ' );
6+ require_once ('../../src/PhpStormMetaGenerator/MetaGeneratorInterface.php ' );
7+ require_once ('../../src/PhpStormMetaGenerator/Drivers/ DriverAbstract.php ' );
88require_once ('../../src/PhpStormMetaGenerator/MetaGenerator.php ' );
99require_once ('../../src/PhpStormMetaGenerator/Drivers/HostCMS/DriverEntities.php ' );
1010require_once ('../../src/PhpStormMetaGenerator/Drivers/HostCMS/DriverAdminEntities.php ' );
Original file line number Diff line number Diff line change 11<?php
2- namespace PhpStormMetaGenerator ;
2+ namespace PhpStormMetaGenerator \ Drivers ;
33
44
55use InvalidArgumentException ;
6- use PhpStormMetaGenerator \Interfaces \DriverInterface ;
76
87/**
98 * Abstract driver class
109 * (Extend this to develop any drivers)
1110 *
1211 * Class DriverAbstract
13- * @package PhpStormMetaGenerator
12+ * @package PhpStormMetaGenerator\Drivers
1413 */
1514abstract class DriverAbstract implements DriverInterface
1615{
Original file line number Diff line number Diff line change 11<?php
2- namespace PhpStormMetaGenerator \Interfaces ;
2+ namespace PhpStormMetaGenerator \Drivers ;
33
44
55/**
66 * Driver interface
77 *
88 * Interface DriverInterface
9- * @package PhpStormMetaGenerator\Interfaces
9+ * @package PhpStormMetaGenerator\Drivers
1010 */
1111interface DriverInterface
1212{
Original file line number Diff line number Diff line change 22namespace PhpStormMetaGenerator \Drivers \HostCMS ;
33
44
5- use PhpStormMetaGenerator \DriverAbstract ;
6- use PhpStormMetaGenerator \Interfaces \DriverInterface ;
5+ use PhpStormMetaGenerator \Drivers \DriverAbstract ;
6+ use PhpStormMetaGenerator \Drivers \DriverInterface ;
7+
78
89/**
910 * Driver for HostCMS to search classes at administrator's area.
Original file line number Diff line number Diff line change 33
44
55use InvalidArgumentException ;
6- use PhpStormMetaGenerator \DriverAbstract ;
7- use PhpStormMetaGenerator \Interfaces \DriverInterface ;
6+ use PhpStormMetaGenerator \Drivers \ DriverAbstract ;
7+ use PhpStormMetaGenerator \Drivers \DriverInterface ;
88
99/**
1010 * Driver for HostCMS to search entities classes.
Original file line number Diff line number Diff line change 33
44
55use InvalidArgumentException ;
6- use PhpStormMetaGenerator \Interfaces \MetaGeneratorInterface ;
7- use PhpStormMetaGenerator \Interfaces \DriverInterface ;
6+ use PhpStormMetaGenerator \Drivers \DriverInterface ;
87
98/**
109 * PhpStorm meta-file generator.
Original file line number Diff line number Diff line change 11<?php
2- namespace PhpStormMetaGenerator \Interfaces ;
2+ namespace PhpStormMetaGenerator ;
3+ use PhpStormMetaGenerator \Drivers \DriverInterface ;
34
45
56/**
67 * Meta generator interface
78 *
89 * Interface MetaGeneratorInterface
9- * @package PhpStormMetaGenerator\Interfaces
10+ * @package PhpStormMetaGenerator
1011 */
1112interface MetaGeneratorInterface
1213{
You can’t perform that action at this time.
0 commit comments