10 lines
124 B
PHP
10 lines
124 B
PHP
|
<?php
|
||
|
|
||
|
class Foo {
|
||
|
protected $bar = CURLAUTH_BASIC;
|
||
|
|
||
|
public function foo () {
|
||
|
$this->bar = 'hello';
|
||
|
}
|
||
|
}
|