Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
Yii2 Gftp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christoffer Benítez
Yii2 Gftp
Commits
420b14de
Unverified
Commit
420b14de
authored
7 years ago
by
HG
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #19 from ndobromirov/master
Fixed the issue for PHP 7.2.
parents
4d2a6005
2536ce62
Branches
Branches containing commit
Tags
2.2.0
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
FtpFile.php
+1
-1
1 addition, 1 deletion
FtpFile.php
drivers/FtpDriver.php
+1
-1
1 addition, 1 deletion
drivers/FtpDriver.php
helpers/Enum.php
+1
-1
1 addition, 1 deletion
helpers/Enum.php
with
3 additions
and
3 deletions
FtpFile.php
+
1
−
1
View file @
420b14de
...
...
@@ -11,7 +11,7 @@ namespace gftp;
* @license GNU LESSER GPL 3
* @version 1.0
*/
class
FtpFile
extends
\yii\base\Object
{
class
FtpFile
extends
\yii\base\
Base
Object
{
public
$isDir
;
public
$rights
;
...
...
This diff is collapsed.
Click to expand it.
drivers/FtpDriver.php
+
1
−
1
View file @
420b14de
...
...
@@ -12,7 +12,7 @@ use \Yii;
/**
* Basic FTP connection driver.
*/
class
FtpDriver
extends
\yii\base\Object
implements
RemoteDriver
{
class
FtpDriver
extends
\yii\base\
Base
Object
implements
RemoteDriver
{
/**
...
...
This diff is collapsed.
Click to expand it.
helpers/Enum.php
+
1
−
1
View file @
420b14de
...
...
@@ -9,7 +9,7 @@ use \ReflectionClass;
*
* @author herve
*/
abstract
class
Enum
extends
\yii\base\Object
{
abstract
class
Enum
extends
\yii\base\
Base
Object
{
private
$name
;
private
$ordinal
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment