Skip to content

Instantly share code, notes, and snippets.

View alexanderschnitzler's full-sized avatar
🏠
Working from home

Alexander Schnitzler alexanderschnitzler

🏠
Working from home
View GitHub Profile
#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
#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;
#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;
#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:
#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
#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;
#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
class Foo {
41public function bar() {
var_dump('non static');
}
static public function __callStatic($name, array $arguments) {
var_dump($name);
}
}
<?php
class Foo {
public function bar() {
var_dump('non static');
}
static public function __callStatic($name, array $arguments) {
var_dump($name);
}
class User {
protected $password;
}
class FormObject extends User {
protected $password2;
}
public function createAction(\FormObject $user) {
}