Skip to content

Instantly share code, notes, and snippets.

@lloc
Created March 23, 2018 09:15
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save lloc/c9ff8310c7d4a62b53517c7c502ebd0a to your computer and use it in GitHub Desktop.
<?php
namespace wctrn\realloc;
class Post {
protected $content;
public function set_content( string $content ) {
$this->content = $content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment