File tree 12 files changed +225
-71
lines changed
12 files changed +225
-71
lines changed Original file line number Diff line number Diff line change 4
4
[ ![ Php Version] ( https://img.shields.io/badge/php-%3E8.0-brightgreen.svg?maxAge=2592000 )] ( https://packagist.org/packages/toolkit/stdlib )
5
5
[ ![ Latest Stable Version] ( http://img.shields.io/packagist/v/toolkit/stdlib.svg )] ( https://packagist.org/packages/toolkit/stdlib )
6
6
[ ![ Github Actions Status] ( https://github.com/php-toolkit/stdlib/workflows/Unit-Tests/badge.svg )] ( https://github.com/php-toolkit/stdlib/actions )
7
+ [ ![ Docs on pages] ( https://img.shields.io/badge/DocsOn-GhPages-brightgreen.svg?maxAge=2592000 )] ( https://php-toolkit.github.io/stdlib/ )
7
8
8
9
🧰 Stdlib - Useful basic tools library for PHP development.
9
10
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="">
3
+ < head >
4
+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge,chrome=1 ">
5
+ < meta name ="viewport " content ="width=device-width,initial-scale=1 ">
6
+ < meta charset ="UTF-8 ">
7
+ < link rel ="stylesheet " href ="//cdn.jsdelivr.net/npm/docsify/themes/vue.css ">
8
+ < title > 🧰 Stdlib - Useful basic tools library for PHP development.</ title >
9
+ </ head >
10
+ < body >
11
+ < div id ="app "> </ div >
12
+ < script >
13
+ window . $docsify = {
14
+ repo : 'php-toolkit/stdlib' ,
15
+ maxLevel : 4 ,
16
+ // 加载 _navbar.md
17
+ loadNavbar : true ,
18
+ // loadNavbar: 'https://raw.githubusercontent.com/inhere/conf/master/docsify/php-projects.md',
19
+ // 加载 _sidebar.md
20
+ // loadSidebar: true,
21
+ alias : {
22
+ // '/_navbar.md': 'https://raw.githubusercontent.com/inhere/conf/master/docsify/php-projects.md',
23
+ // '/.*/_sidebar.md': 'https://raw.githubusercontent.com/inhere/conf/master/docsify/php-projects.md',
24
+ // '/.*/_sidebar.md': '/_sidebar.md', // See #301
25
+ }
26
+ }
27
+ </ script >
28
+ < script src ="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js "> </ script >
29
+ </ body >
30
+ </ html >
Original file line number Diff line number Diff line change
1
+ <?php declare (strict_types=1 );
2
+
3
+ namespace Toolkit \Stdlib \Helper ;
4
+
5
+ use function abs ;
6
+ use function ceil ;
7
+ use function floor ;
8
+ use function round ;
9
+ use const PHP_ROUND_HALF_UP ;
10
+
11
+ /**
12
+ * class NumHelper
13
+ *
14
+ * @author inhere
15
+ */
16
+ class NumHelper
17
+ {
18
+ /**
19
+ * @param float|int $value
20
+ *
21
+ * @return int
22
+ */
23
+ public static function floor (float |int $ value ): int
24
+ {
25
+ return (int )floor ((float )$ value );
26
+ }
27
+
28
+ /**
29
+ * @param float|int $value
30
+ *
31
+ * @return int
32
+ */
33
+ public static function ceil (float |int $ value ): int
34
+ {
35
+ return (int )ceil ((float )$ value );
36
+ }
37
+
38
+ /**
39
+ * @param float|int $value
40
+ *
41
+ * @return int
42
+ */
43
+ public static function abs (float |int $ value ): int
44
+ {
45
+ return (int )abs ($ value );
46
+ }
47
+
48
+ /**
49
+ * @param float|int $value
50
+ * @param int $precision
51
+ * @param int $mode
52
+ *
53
+ * @return float
54
+ */
55
+ public static function round (float |int $ value , int $ precision = 0 , int $ mode = PHP_ROUND_HALF_UP ): float
56
+ {
57
+ return round ((float )$ value , $ precision , $ mode );
58
+ }
59
+
60
+ /**
61
+ * @param float|int $value
62
+ *
63
+ * @return int
64
+ */
65
+ public static function roundInt (float |int $ value ): int
66
+ {
67
+ return (int )round ((float )$ value );
68
+ }
69
+ }
Original file line number Diff line number Diff line change 9
9
10
10
namespace Toolkit \Stdlib ;
11
11
12
- use Toolkit \Stdlib \Helper \IntHelper ;
13
- use function abs ;
14
- use function ceil ;
15
- use function floor ;
16
- use function round ;
17
- use const PHP_ROUND_HALF_UP ;
12
+ use Toolkit \Stdlib \Helper \NumHelper ;
18
13
19
14
/**
20
15
* Class Math
21
16
*
22
17
* @package Toolkit\Stdlib
23
18
*/
24
- class Math extends IntHelper
19
+ class Math extends NumHelper
25
20
{
26
- /**
27
- * @param float|int $value
28
- *
29
- * @return int
30
- */
31
- public static function floor (float |int $ value ): int
32
- {
33
- return (int )floor ((float )$ value );
34
- }
35
21
36
- /**
37
- * @param float|int $value
38
- *
39
- * @return int
40
- */
41
- public static function ceil (float |int $ value ): int
42
- {
43
- return (int )ceil ((float )$ value );
44
- }
45
-
46
- /**
47
- * @param float|int $value
48
- *
49
- * @return int
50
- */
51
- public static function abs (float |int $ value ): int
52
- {
53
- return (int )abs ($ value );
54
- }
55
-
56
- /**
57
- * @param float|int $value
58
- * @param int $precision
59
- * @param int $mode
60
- *
61
- * @return float
62
- */
63
- public static function round (float |int $ value , int $ precision = 0 , int $ mode = PHP_ROUND_HALF_UP ): float
64
- {
65
- return round ((float )$ value , $ precision , $ mode );
66
- }
67
-
68
- /**
69
- * @param float|int $value
70
- *
71
- * @return int
72
- */
73
- public static function roundInt (float |int $ value ): int
74
- {
75
- return (int )round ((float )$ value );
76
- }
77
22
}
Original file line number Diff line number Diff line change
1
+ <?php declare (strict_types=1 );
2
+ /**
3
+ * This file is part of toolkit/stdlib.
4
+ *
5
+ * @author https://github.com/inhere
6
+ * @link https://github.com/php-toolkit/stdlib
7
+ * @license MIT
8
+ */
9
+
10
+ namespace Toolkit \Stdlib ;
11
+
12
+ use Toolkit \Stdlib \Helper \NumHelper ;
13
+
14
+ /**
15
+ * Class Num
16
+ *
17
+ * @package Toolkit\Stdlib
18
+ */
19
+ class Num extends NumHelper
20
+ {
21
+
22
+ }
Original file line number Diff line number Diff line change 6
6
use Toolkit \Stdlib \Obj ;
7
7
use Toolkit \Stdlib \Obj \Exception \ContainerException ;
8
8
use Toolkit \Stdlib \Obj \Exception \NotFoundException ;
9
+ use Toolkit \Stdlib \Obj \Traits \AutoConfigTrait ;
9
10
use function array_keys ;
10
11
use function count ;
11
12
use function is_array ;
25
26
*/
26
27
class ObjectBox implements ContainerInterface
27
28
{
29
+ use AutoConfigTrait;
30
+
28
31
/**
29
32
* only create object on first fetch.
30
33
*/
@@ -66,16 +69,6 @@ class ObjectBox implements ContainerInterface
66
69
*/
67
70
private array $ definitions = [];
68
71
69
- /**
70
- * Class constructor.
71
- *
72
- * @param array $options
73
- */
74
- public function __construct (array $ options = [])
75
- {
76
- Obj::init ($ this , $ options );
77
- }
78
-
79
72
/**
80
73
* @return static
81
74
*/
@@ -113,11 +106,11 @@ public function get(string $id): mixed
113
106
if ($ callInit && method_exists ($ obj , $ this ->initMethod )) {
114
107
$ obj ->init ();
115
108
}
116
- }
117
109
118
- // storage it on type is TYPE_SINGLETON
119
- if ($ opt ['objType ' ] ?? self ::TYPE_SINGLETON ) {
120
- $ this ->objects [$ id ] = $ obj ;
110
+ // storage it on type is TYPE_SINGLETON
111
+ if ($ opt ['objType ' ] ?? self ::TYPE_SINGLETON ) {
112
+ $ this ->objects [$ id ] = $ obj ;
113
+ }
121
114
}
122
115
123
116
// type TYPE_PROTOTYPE always create new object.
Original file line number Diff line number Diff line change 7
7
* @license MIT
8
8
*/
9
9
10
+ use JetBrains \PhpStorm \NoReturn ;
11
+
10
12
if (!function_exists ('vdump ' )) {
11
13
/**
12
14
* Dump data like var_dump
@@ -34,6 +36,7 @@ function vdump(...$vars): void
34
36
*
35
37
* @param mixed ...$vars
36
38
*/
39
+ #[NoReturn]
37
40
function edump (...$ vars ): void
38
41
{
39
42
$ trace = debug_backtrace (DEBUG_BACKTRACE_IGNORE_ARGS , 2 );
@@ -56,6 +59,7 @@ function edump(...$vars): void
56
59
*
57
60
* @param mixed ...$vars
58
61
*/
62
+ #[NoReturn]
59
63
function ddump (...$ vars ): void
60
64
{
61
65
$ trace = debug_backtrace (DEBUG_BACKTRACE_IGNORE_ARGS , 2 );
Original file line number Diff line number Diff line change
1
+ <?php declare (strict_types=1 );
2
+
3
+ namespace Toolkit \StdlibTest \Cases ;
4
+
5
+ use Toolkit \Stdlib \Obj \Traits \AutoConfigTrait ;
6
+
7
+ /**
8
+ * class AutoConfigObj
9
+ *
10
+ * @author inhere
11
+ */
12
+ class AutoConfigObj
13
+ {
14
+ use AutoConfigTrait;
15
+
16
+ public int $ age = 0 ;
17
+
18
+ private string $ name = '' ;
19
+
20
+ /**
21
+ * @param string $name
22
+ */
23
+ public function setName (string $ name ): void
24
+ {
25
+ $ this ->name = $ name ;
26
+ }
27
+
28
+ /**
29
+ * @return string
30
+ */
31
+ public function getName (): string
32
+ {
33
+ return $ this ->name ;
34
+ }
35
+ }
Original file line number Diff line number Diff line change
1
+ <?php declare (strict_types=1 );
2
+
3
+ namespace Toolkit \StdlibTest \Obj ;
4
+
5
+ use Toolkit \Stdlib \Obj \ObjectBox ;
6
+ use Toolkit \StdlibTest \BaseLibTestCase ;
7
+
8
+ /**
9
+ * class ObjectBoxTest
10
+ *
11
+ * @author inhere
12
+ */
13
+ class ObjectBoxTest extends BaseLibTestCase
14
+ {
15
+ public function testObjectBox_basic (): void
16
+ {
17
+ $ box = ObjectBox::new ();
18
+ $ box ->set ('name1 ' , 'inhere ' );
19
+
20
+ $ this ->assertTrue ($ box ->has ('name1 ' ));
21
+ $ this ->assertEquals ('inhere ' , $ box ->get ('name1 ' ));
22
+ }
23
+ }
Original file line number Diff line number Diff line change
1
+ <?php declare (strict_types=1 );
2
+
3
+ namespace Toolkit \StdlibTest \Obj \Traits ;
4
+
5
+ use Toolkit \StdlibTest \BaseLibTestCase ;
6
+ use Toolkit \StdlibTest \Cases \AutoConfigObj ;
7
+
8
+ /**
9
+ * class AutoConfigTraitTest
10
+ *
11
+ * @author inhere
12
+ */
13
+ class AutoConfigTraitTest extends BaseLibTestCase
14
+ {
15
+ public function testAutoConfig (): void
16
+ {
17
+ $ obj = AutoConfigObj::new ();
18
+
19
+ $ this ->assertEquals (0 , $ obj ->age );
20
+ $ this ->assertEquals ('' , $ obj ->getName ());
21
+
22
+ $ obj = AutoConfigObj::new (['age ' => 23 , 'name ' => 'inhere ' ]);
23
+ $ this ->assertEquals (23 , $ obj ->age );
24
+ $ this ->assertEquals ('inhere ' , $ obj ->getName ());
25
+ }
26
+ }
Original file line number Diff line number Diff line change
1
+ * PhpPkg
2
+ * [ EasyTpl] ( https://phppkg.github.io/easytpl/ " template engine ")
3
+ * [ Validate] ( https://inhere.github.io/php-validate/ " data validate engine ")
4
+ * Toolkit
5
+ * [ PFlag] ( https://php-toolkit.github.io/pflag/ " console option and argument parse ")
6
+ * [ Stdlib] ( https://php-toolkit.github.io/stdlib/ " Useful basic tools library for PHP development. ")
You can’t perform that action at this time.
0 commit comments