This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region Assembly mscorlib.dll, v4.0.30319 | |
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll | |
#endregion | |
using System; | |
using System.Runtime; | |
using System.Runtime.InteropServices; | |
using System.Threading; | |
namespace System.IO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region Assembly mscorlib.dll, v4.0.30319 | |
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll | |
#endregion | |
using Microsoft.Win32.SafeHandles; | |
using System; | |
using System.Runtime.InteropServices; | |
using System.Security; | |
using System.Security.AccessControl; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region Assembly mscorlib.dll, v4.0.30319 | |
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll | |
#endregion | |
using System; | |
using System.Collections.Generic; | |
using System.Runtime.InteropServices; | |
using System.Security; | |
using System.Security.AccessControl; | |
using System.Text; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region Assembly mscorlib.dll, v4.0.30319 | |
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll | |
#endregion | |
using System; | |
using System.Runtime.InteropServices; | |
namespace System.IO | |
{ | |
// Zusammenfassung: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region Assembly mscorlib.dll, v4.0.30319 | |
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll | |
#endregion | |
using System; | |
using System.Runtime.InteropServices; | |
using System.Security; | |
using System.Security.AccessControl; | |
namespace System.IO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region Assembly mscorlib.dll, v4.0.30319 | |
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll | |
#endregion | |
using System; | |
using System.Collections.Generic; | |
using System.Runtime.InteropServices; | |
using System.Security; | |
using System.Security.AccessControl; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region Assembly mscorlib.dll, v4.0.30319 | |
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll | |
#endregion | |
using System; | |
using System.Runtime.InteropServices; | |
using System.Runtime.Serialization; | |
using System.Security; | |
namespace System.IO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo { | |
41public function bar() { | |
var_dump('non static'); | |
} | |
static public function __callStatic($name, array $arguments) { | |
var_dump($name); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Foo { | |
public function bar() { | |
var_dump('non static'); | |
} | |
static public function __callStatic($name, array $arguments) { | |
var_dump($name); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User { | |
protected $password; | |
} | |
class FormObject extends User { | |
protected $password2; | |
} | |
public function createAction(\FormObject $user) { | |
} |
OlderNewer