Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Dec 29, 2020. It is now read-only.

Add scalar type hints and return types to existing PHP projects using PHPDoc annotations

License

NotificationsYou must be signed in to change notification settings

dunglas/phpdoc-to-typehint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Archived! This repository is now archived. Consider usingPHP CS Fixer (and especially thephpdoc_to_param_type andphpdoc_to_return_type rules) orRector instead.

phpdoc-to-typehint adds automatically scalar type hints and return types to all functions and methods of a PHP projectusing existing PHPDoc annotations.

Build Status

Warning: this project is an early stage of development. Itcan damage your code.Be sure to make a backup before running this command and to run your test suite after.

Pleasereport any bug you find using this tool.

Install and usage

  1. Download the latest PHAR file
  2. Runphp phpdoc-to-typehint.phar <your-project-directory>

Your project should have scalar type hints and return type declarations.

Before:

<?php/** * @param int|null $a * @param string   $b * * @return float */functionbar($a,$b,bool$c,callable$d =null){return0.0;}

After:

<?php/** * @param int|null $a * @param string   $b * * @return float */functionbar(int$a =null,string$b,bool$c,callable$d =null) :float{return0.0;}

Features

Supports:

  • functions
  • methods of classes and traits
  • method definitions in interfaces
  • PHPDoc inheritance
  • PHP 7.1 nullable types (can be disabled with--no-nullable-types option)

Credits

Created byKévin Dunglas. Sponsored byLes-Tilleuls.coop.

About

Add scalar type hints and return types to existing PHP projects using PHPDoc annotations

Topics

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Contributors7

Languages


[8]ページ先頭

©2009-2025 Movatter.jp