This website works better with JavaScript.
Explore
Help
Sign In
mirrors
/
flight-core
mirror of
https://github.com/flightphp/core
Watch
1
Star
0
Fork
You've already forked flight-core
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8bd7fd035b
master
php8-named-arguments-support
documentation-tests
v1
v3.5.0
v3.4.1
v1.2.17
v1.2.15
v1.2.14
v1.1.10
v1.1.5
v1.2
v1.1
v3.9.0
v3.8.1
v3.8.0
v3.7.2
v3.7.1
v3.7.0
v3.6.2
v3.6.1
v3.6.0
v3.5.3
v3.5.2
v3.4.2
v3.4.0
v3.3.0
v3.2.0
v3.13.1
v3.13.0
v3.12.0
v3.11.1
v3.11.0
v3.10.1
v3.10.0
v3.1.1
v3.1.0
v3.0.2
v3.0.1
v3.0.0
v2.0.1
v2.0.0
v1.3.9
v1.3.8
v1.3.7
v1.3.5
v1.3.4
v1.3.3
v1.3.2
v1.3.1
v1.3.0
v1.2.22
v1.2.21
v1.2.20
v1.2.19
v1.2.18
v1.2.13
v1.0
v.3.5.1
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '8bd7fd035b'
${ noResults }
flight-core
/
tests
/
classes
/
User.php
12 lines
126 B
Raw
Normal View
History
Unescape
Escape
Added ability to register callbacks for class instantiation.
11 years ago
<?php
updated phpunit and tests
4 years ago
class User
{
Added ability to register callbacks for class instantiation.
11 years ago
public $name;
updated phpunit and tests
4 years ago
public function __construct($name = '')
{
Added ability to register callbacks for class instantiation.
11 years ago
$this->name = $name;
}
updated phpunit and tests
4 years ago
}