Skip to content

Instantly share code, notes, and snippets.

@kodetop
Created August 16, 2020 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kodetop/804e6e3b1d03bd74ea74735d6ba42c26 to your computer and use it in GitHub Desktop.
Save kodetop/804e6e3b1d03bd74ea74735d6ba42c26 to your computer and use it in GitHub Desktop.
Code Style: Ejemplo usando PSR-1
<?php
namespace Kodetop;
class UserProfile
{
const VERSION = '1.0';
var $name = 'Guest';
function getName()
{
return $this->name;
}
function setName($name)
{
$this->name = $name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment